Challenge One: Good Morning Greeting

Write a function greet() that uses your name as an input and that logs “Good Morning, “Your Name!” to your console.

PS: Please ensure that you use your own name when testing your code to verify that it works correctly with different inputs.

Here is an example of an input you should enter:

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

And here is an example of an output you should get after you write proper code for this challenge:

Good Morning, Tom!
Good Morning, Lisa!