Build a Pin Extractor - Step 3

Tell us what’s happening:

The poem variable should have a value equal to Stars and the moon\nshine in the sky\nwhite and bright\nuntil the end of the night.

Your code so far


# User Editable Region

poem = '''stars and the moon \nshine in the sky \nwhite and bright \nuntil the end of the night'''
def pin_extractor(poem):
    secret_code = ''
    print(poem)
pin_extractor(poem)

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

Challenge Information:

Build a Pin Extractor - Step 3

if you are using ''' for a multiline string, go to a new line instead of using \n

you have extra spaces in the string, around the \n

Please say how you are personally stuck instead of only pasting the error message