Tell us what’s happening:
I am so stuck, Im getting aggravated. Yes, there are similar questions that have been solved but since yall keep erasing the solution, I still have no idea wth is wrong and why it is not passing. I thought that I understood the logic and what it was asking for. But i guess not.
Every source Ive looked up on the web has the same answer for exactly what this is asking for, still wont pass. And the hint is no help at all. Sorry for the griping and thank you in advance. Im ready to move on!
Your code so far
// User Editable Region
getAverage(array) {
let sum = 0;
for (let i = 0; i < array.length; i++) {
sum += array[i];
}
return sum/array.length;
}
console.log(getAverage([92, 88, 12, 77, 57, 100, 67, 38, 97, 89]));
console.log(getAverage([45, 87, 98, 100, 86, 94, 67, 88, 94, 95]));
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
Challenge Information:
Review JavaScript Fundamentals by Building a Gradebook App - Step 1