Challenge One: Good Morning Greeting

Write a function greet() that uses your name as an input and returns the string “Good Morning, [Your Name]!” where [Your Name] is the input.

Create, test, and store code in CodePen

Here is an example of how you can test your code with various inputs:

console.log(greet("Tom"))
console.log(greet("Lisa"))

And here what you should see in your console after you write proper code for this challenge:

Good Morning, Tom!
Good Morning, Lisa!