What is the result of the following code?
let counter = 1; do { counter++; } while (counter < 4); console.log(counter);
5
4
3
1