0 / 60 seg.

What is the result of the following expression?

const numbers = [1, 2, 3];
const sum = numbers.reduce((total, num) => total + num, 0);
console.log(sum);