0 / 60 seg.

What value is obtained when executing the following code?

const sumAll = (...numbers) => numbers.reduce((a, b) => a + b, 0);
console.log(sumAll(1, 2, 3, 4));