Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

please I need help I dont understand what im supposed to do

Your code so far


// User Editable Region

function getAverage(scores) {
getAverage.return()
}

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 (Windows NT 10.0; Win64; x64) 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 1

You need to find the average of the scores array.

Do you know what that means(?) and if so, what specifically is the help you require?

I don’t know what it means

The average is the value you get when you add up all the scores, then divide the calculated sum with the total number of scores.

Research how to take the average of a set of values ​​and apply this logic within the function.
And return the value of this logic outside the function.