I clicked on “Get Solution” then copy/pasted this:
const finalGrade = (midterm, final, homework) => {
if ((midterm < 0 || midterm > 100) || (final < 0 || final > 100) || (homework < 0 || homework > 100)) {
return 'You have entered an invalid grade.'
}
But I get helper error “SyntaxError: Unexpected token )”
Please how can the solution code be wrong, and how do I fix it please?