Help me in solving PYTH99 problem

My issue

My code

# Print each item of the list on a separate line
fruits = ["apple", "banana", "orange"]

numbers = [1, 6, 4, 3, 2, 5]
for numbers in fruits:
    print(numbers)

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

@pone004
u have to do it like this

numbers = [1, 6, 4, 3, 2, 5]
for i in numbers:
print(i)