Build a Caesar Cipher - Step 8

Tell us what’s happening:

Give me correct code for the error and mention the error

Your code so far


# User Editable Region

alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
translation_table = str.maketrans(alphabet, shifted_alphabet)
text='hello world'
encrypted_text=text.translate(translated_table)
print(encrypted_text)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 8

we can’t give you correct code, it’s against the rules

make sure you use what alrady exist, translated_table is not a value that exist, check what is the correct name of the variable