Error in code of break statement in python tutorial

Describe your issue

Screenshot

Additional info

as there is an error in the break statement of this code

this is the code

fruits = ["apple", "banana", "orange", "grape"]

for item in fruits:
    if item == "orange":
        break
    print(fruits)

what changes should there be are ::
print (items) in place of print (fruits)

Thank you for reporting, fixed it.