Fix the Dict
This program should print the student's name, but it uses the wrong key. Fix it!
Expected output:
text
Name: Alex
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
student = {"name": "Alex", "age": 10, "grade": "5th"}
print("Name:", student["nombre"])