Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

I check the typeof the values, they are numbers, I can see the output is correct. What is wrong here please?

Your code so far


// User Editable Region

function getAverage(scores) {
  let sum = 0;
  for (const score of scores) {
    sum += score;
  }
  console.log(Number(sum/scores.length));
  return Number(sum/scores.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]));
console.log(getAverage([38, 99, 87, 100, 100, 100, 100, 100, 100, 100]));

// 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/136.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

what are the tests telling you?

nvm it was giving errors as if nothing was changed at all(default reminders which say all should be numbers, should be average etc), then after I logged in to post the question, tried again, it just worked.