Basic JavaScript: Replace Loops using Recursion question123

Tell us what’s happening:

Why is fcc telling me my code is wrong?

Your code so far


function sum(arr, n) {
// Only change code below this line
if(n <= 0){
  return 1
}else {
  return sum(arr, n -1) + [arr - 1]
}

// Only change code above this line
}

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Mobile Safari/537.36.

Challenge: Replace Loops using Recursion

Link to the challenge:

function sum(arr, n) {
if(n <= 0) {
return 0;
} else {
return sum(arr, n - 1) + arr[n - 1];
}
}

you have return value 1 but you need 0, also you don’t have semicolons.

is this how you get an element from inside an array?