0 / 60 seg.

¿Qué valor se imprime al ejecutar el siguiente código?

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