Build an Employee Profile Generator - Step 2

Tell us what’s happening:

what string am I missing I’ve already done the concatenating code and then print full_name but its still telling me to assign a string formed by concatenating

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 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 2

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-employee-profile-generator/694bf3af05d10fd89dab05cc.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Malachi_Cearley

Do you need to do this when you concatenate one variable to another?

Happy coding

I figured it out thank you so much