Athletes of the Week
Kemba Credit Union Athletes of the Week 1/21/2019-1/27/2019
Sophomore, Basketball
Osean sparked two hard earned Firebird wins this week. He contributed a game-high 25 points in a 72-67 win over Colerain Friday. The following night Anuforo made a driving field goal with just three seconds remaining to give West a one-point win over Turpin, his second double-figure scoring game of the week
Jaydis Gales
Senior, Basketball
Jaydis scored 31 points in 21 minutes of work achieved in a pair of GMC wins. On Tuesday she contributed 10 points in a home win over Fairfield. On Saturday Gayles added a game-high 21 points at Oak Hills.
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();