Iterate with JavaScript Do...While Loops (please help)

Tell us what’s happening:
I truly have no idea what I am suppose to be doing. Please help

Your code so far


// Setup
var myArray = [];
var i = 10;

// Only change code below this line.

while (i < 5) {
  myArray.push(i);
  i++;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-do---while-loops

What don’t you understand? The instructions seem pretty clear: You are to change that while loop into a do…while loop. What code have you tried? If you haven’t tried any code, at least paraphrase for us what you think the problem is asking you to do so we can clarify any misunderstandings. Based on what you posted there I have nothing to go on and I would likely end up just re-telling you what the directions already told you.

do {
  ourArray.push(i);
  i++;
} while (i &lt; 5);

Read the example in the description.
Convert the while loop to a do…while loop.