What is the result of the following expression?
function sum(a, b) { return a + b; } console.log(sum(2, 3, 4));
SyntaxError
11
9
5