Build a Caesar Cipher - Step 4

Your code so far


# User Editable Region

alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:]
print(shifted_alphabet)
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
print(shifted_alphabet)

# User Editable Region

#fghijklmnopqrstuvwxyzabcde
Is my output, and for some reason it says code does not pass. Can someone help please?

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 4

https://www.freecodecamp.org/learn/full-stack-developer/workshop-caesar-cipher/step-4

you are not asked to add new lines in this step, complete the line already there

Which line? Do I discard the last print?

remove the lines you added, and update the existing line with shifted_alphabet

reset the step if you don’t know which lines you added

It worked, you were right. Thank you so much!