Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
// Setup
const myArray = [];
// Only change code below this line
let i = 0;
while (i < 6) {
myArray.push(i);
i++;
}
console.log(myArray)
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15
Challenge: Iterate with JavaScript While Loops
Link to the challenge: