Suma los números del 5 al 0 (inclusive) en orden descendente para myArray usar un while bucle.
// Setup
var myArray = [];
var i = 0;
while(i < 6){
myArray.push(i);
i++;
}
console.log(myArray)
// Only change code below this line
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
Challenge: Iterate with JavaScript While Loops
Link to the challenge: