What is the result of the following expression?
const add = (a, b) => a + b; console.log(add(2, 3, 4));
SyntaxError
7
5
9