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