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