Here's the solution: python def greet(name, greeting="Hello"): return greeting + ", " + name + "!" Or with f-strings: python def greet(name, greeting="Hello"): return f"{greeting}, {name}!" The default parameter greeting="Hello" makes the second argument optional.
When called with just a name, it uses the default.