Tell us what’s happening:
Describe your issue in detail here.
It keeps saying total` should equal 20.
Please tell me what is wrong
Your code so far
// Setup
const myArr = [2, 3, 4, 5, 6];
// Only change code below this line
let total = 0;
for (let i = 0; i < myArr.length; i++) {
total += myArray[i];
console.log(myArr[i]);
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Iterate Through an Array with a For Loop