Learn String Manipulation by Building a Cipher - Step 26

Tell us what’s happening:

i need help with question 26 i don’t know what’s wrong with my code

Your code so far

text = 'Hello World'
shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'

# User Editable Region

for index=(alphabet.find(char)) in text:
    print(char)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 26

Hello,
the instructions says you should add index=(alphabet.find(char)) inside your for loop but you replaced char with it

for char in text:
   # this is the inside of a for loop, the first line is the for loop declaration