Write a function greet that takes a name and an optional greeting. If no greeting is provided, use "Hello". The function should return the message (not print it).
Examples:
greet("Alice")returns"Hello, Alice!"greet("Bob", "Hi")returns"Hi, Bob!"