I’ve declared and initialized total to 0 and I used a for loop to iterate through myArr but my total keeps coming up as equal 0 and I don’t know how to get total to equal 20. I would be most grateful for any help. Here is the code I used
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];
// Only change code below this line
var total = 0;
for (var x = 0; x < myArr.lenght; x++) {
total += myArr[x];
}