Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

I have found the average of the test scores. They come up accurately. However, when I submit, it says I am missing something. Do I need to average the averages?

Your code so far


// User Editable Region

function getAverage(scores) {
 let sum = 0;
 let average = 0
 for (let i = 0; i < scores.length; i++) {sum += scores[i];}
  average = sum/scores.length;
  console.log(average)
}
getAverage([92, 88, 12, 77, 57, 100, 67, 38, 97, 89])
getAverage([45, 87, 98, 100, 86, 94, 67, 88, 94, 95])
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/126.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Welcome back to the forum @Dev-Wy

You are console logging the average, not returning it.

Happy coding