0 / 60 seg.

What value is printed when executing the following code?

let n = 5;
do {
    n--;
} while (n > 2);
console.log(n);