Complete the greet function

Finish the greet function so that it returns the string "Hello, NAME!" where NAME is the argument passed to the function. For example, greet('Sam') should return 'Hello, Sam!'.
JavaScript
Console