the code doesnt work in here but it works and does what it needs when i compile the code in visual studio.
this is the output i am getting: [ 5, 4, 3, 2, 1, 0 ]
// Setup
const myArray = [ ];
// Only change code below this line
i = 5;
while(i >= 0) {
myArray.push(i);
i--;
}