Build an Employee Profile Generator - Step 2

Tell us what’s happening:

when i run the code it says to assign a string between the first name and the last name to my full name variable. i checked but my code is correct. i asked google but it is giving me a wrong way

Your code so far

first_name = 'John'

# User Editable Region

last_name = 'Doe'
print(first_name)
print(last_name)
first_name = "John"
last_name = 'Doe'
full_name = "John"+" "+'Doe'
print(full_name) # output: John Doe



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

Challenge Information:

Build an Employee Profile Generator - Step 2

you are not using the first_name and last_name variables, can you consider how that may be an issue?