0 / 60 seg.

What value is printed when executing the following code?

let total = 1;
for (let i = 2; i < 4; i++) {
  total *= i;
}
console.log(total);