Help me in solving PSPP82 problem

My issue

I want proper answer

My code

def greet(name):
    return f"Hello, {name}!"

def capitalize(text):
    return text.upper()

def greet_and_capitalize(name):
    greeting=greet(name)
    return
 capitalize(greeting)
    # Update the code below this line




# Call the functions
name = "Alice"
final_result = greet_and_capitalize(name)

# Display the results
print("Final Result:", final_result)

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

Instead of

    return
capitalize(greeting)

You have to do this:

return capitalize(greeting)