JSFiddle - React, Tailwind, and code Playground

by Manju06

JavaScript

// Setup
const myArray = [];

// Only change code below this line
let i = 5;
while(i >= 0){
  myArray.push(i);
  i--;
  console.log(myArray);
}