Build a Caesar Cipher - Step 15

Tell us what’s happening:

I noticed there was a change on the output but I don’t know how to do the rest

Your code so far

def caesar(text, shift):
    alphabet = 'abcdefghijklmnopqrstuvwxyz'.upper()
    shifted_alphabet = alphabet[shift:] + alphabet[:shift]

# User Editable Region

    translation_table = str.maketrans(alphabet, shifted_alphabet)

# User Editable Region

    return text.translate(translation_table)


encrypted_text = caesar('freeCodeCamp', 3)
print(encrypted_text)

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15

Challenge Information:

Build a Caesar Cipher - Step 15

this is the line to change, you may notice it is the one in the editable region

now the two are only lowercase, you need to concatenate the uppercase version to this, so that both lowercase and uppercase letters are considered

do you know how to concatenate two strings together?

I already did it thanks!