Help me in solving PYTH107 problem

My issue

How to solve this problem

My code

# update the code below to solve the problem

n = [1,2,3,4,5,6,7,8,9,10]
for number in n:
    if n == 5:
        continue 
    print(n)

Learning course: Python Programming
Problem Link: Continue Statement in Python Programming