Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

My code doesn’t work. I got a message saying “Your getAverage function should return a number.”

Your code so far


// User Editable Region


function getAverage(scores) {
  let sum =0;
 for(let i = 0; i < scores.length; i++) {
   sum = sum + scores[i]; 
 }
 const average = sum / scores.length;
  return average;
}
 
 

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Hi @hikari.h

Your code passes.
Reset the step and try again. If that doesn’t work, refresh the page, disable dark mode, disable ad blockers. Or, use another browser.
If the above steps do not work, you may need to restart the computer.

Happy coding

My code passed! Thank you

1 Like