0 / 60 seg.

What is the output of the following code?

var i = 0;
do {
  console.log(i);
  i++;
} while (i < 5);