What value is printed when executing the following code?
let n = 5; do { n--; } while (n > 2); console.log(n);
0
1
2
5