Review JavaScript Fundamentals by Building a Gradebook App - Step 2

Tell us what’s happening:

hey guy noob here. was wondering if anyone can help me out, i really dont now what the issue is here. appreciate any help.

thanks.

Your code so far

function getAverage(scores) {
  let sum = 0;

  for (const score of scores) {
    sum += score;
  }

  return sum / scores.length;
}

// User Editable Region

function getGrade(score) {
  if (score === 100){
     return "A++";
  }
  else if (score >= 99){
    return "A";
  }
  else if (score >= 89){
    return "B";
  }
else if (score >= 79){
    return "C";
  }
else if (score >= 69){
    return "D";
  }
else  (score >= 59){
    return "F";
  }
  

console.log(getGrade(96));
console.log(getGrade(82));
console.log(getGrade(56));

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 2

when you open a parenthesis like {, you have to close it with }

take a look at your code, are all the parenthesis closed?

edit: also, when should a person get an F grade? Double check.