What will be the output of the following code?
let add = (a, b) => a + b; let result = add(3, 4); console.log(result);
7
4
SyntaxError
3