0 / 60 seg.

What is the output of the following code?

var i = 5;
do {
  console.log(i);
  i--;
} while (i > 0);