Fix the Parameters
The function is called with arguments in the wrong order. Fix the call!
Expected output:
text
Alex is 10 years old
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
def describe(name, age):
print(f"{name} is {age} years old")
describe(10, "Alex")