Help me in solving PSPP117 problem

My issue

how can i finish it

My code

# Debug the code below to solve the problem

student_info = {"name": "Alice", "age": 25, "course": "Python"}

for info in student_info.items():
    print("Key:", info, "Value:", value)

Learning course: Python Programming
Problem Link: Iterate over a dictionary in Python Programming

First you should note that there is a variable ‘value’ you have to fill.
Then you should consider what you get from some_dictionary.items().
Last look up ‘tuple unpacking’ to bring it all together.