Build a Caesar Cipher - Step 10

Tell us what’s happening:

Hago la consigna pero no me la acepta, alguien que halla completado la consigna que me pueda ayudar

Your code so far


# User Editable Region

def caesar():
    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    shift = 5
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]
    translation_table = str.maketrans(alphabet, shifted_alphabet)
    texy = 'hello world'
    encrypted_text = texty.translate(translation_table)
    return encrypted_text

# 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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Caesar Cipher - Step 10

double check those texy and texty variable, it does not seem correct