function sum(...numbers) { return numbers.reduce((acc, num) => acc + num, 0); }
const max = Math.max(...arr);