Iterate Through an Array with a For Loop Wrong tests? [EDIT: ok I forgot ';'] -.-

I think there is something wrong with tests. Do I miss something?
// running tests

total should be declared and initialized to 0

Do not set total to 20 directly

// tests completed


// 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];
var total = 0
// Only change code below this line

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 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

the mistake is in this line:

var total = 0

^^^^^^^^^^^^^^^

try again and if you cant find it ill try to help you further! HINT: It’s a really small mistake!