What value is obtained when executing the following code?
let b = 1; do { b++; } while (b < 5); console.log(b);
6
1
4
5