Count Backwards With a For Loop 1

Tell us what’s happening:

I can’t run the test. Every time i run the test the browser goes down AND NOT RESPONDING

Your code so far


// Example
var ourArray = [];

for (var i = 10; i > 0; i -= 2) {
  ourArray.push(i);
}

// Setup
var myArray = [];
for (var i = 9; i => 1; i -= 2){
  myArray.push(i);
}

// Only change code below this line.


Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop

this made an infinite loop?

okay, got it, Thank you for your help.