Iterate Through an Array with a For Loop (stuck)

Tell us what’s happening:

can’t figure out how to add all of the array’s contents together using “Total” and the correct javascript operator. PLZ HELP!

Your code so far


// Example
var ourArr = [ 9, 10, 11, 12];
var ourTotal = 0;

for (var i = 0; i < ourArr.length; i++) {
  ourTotal += ourArr[i];
}

// Setup
var myArr = [ 2, 3, 4, 5, 6];
for (var total = 0; i < myArr.length; i++) {
  console.log(myArr[total]);
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/iterate-through-an-array-with-a-for-loop

Your total is the incrementor for your for loop. Right now your code will print a count from 0 to myArr.length - 1.