Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

I resolved the issue, I’m getting the expected result but I can’t move on to the next challenge. I think this exercise is broken.

Your code so far


// User Editable Region

function getAverage(scores) {
  let soma = 0

  for (let i = 0; i < scores.length; i++) {
    soma += scores[i]
  }

  const media = soma / scores.length
  console.log(media)
}

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 (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

Welcome to the forum @radfpsoficial

Please read the instructions carefully.
They do not ask you to console log the value.

Happy coding

Hi there!

media have not defined. And you need to return the average, not to assign it to a variable.