0 / 60 seg.

What is the result of the following code?

let counter = 1;
do {
  counter++;
} while (counter < 4);
console.log(counter);