Build an Employee Profile Generator - Step 2

Tell us what’s happening:

I’m not sure what I have wrong here. Is there something I’m overlooking?

Your code so far

first_name = 'John'
last_name = 'Doe'
print(first_name)
print(last_name)

# User Editable Region

full_name = 'first_name' + 'last_name'
print(full_name)

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

Challenge Information:

Build an Employee Profile Generator - Step 2

You have assigned strings to the variable rather than the variable names to make the new string.

i tried the other way round but it still didn’t work

hi @emeliaapau208 , please create your own topic to ask your questions

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.