What will be the output of the following code?
let greet = name => "Hello, " + name + "!"; console.log(greet("John"));
Hello, undefined!
Hello, John!
SyntaxError
Hello, name!