Arrow Functions

What is the output when passing extra arguments to an arrow function?
const add = (a, b) => a + b;
console.log(add(2, 3, 4, 5));
Next Question (20/20)