Build an Employee Profile Generator - Step 11

Tell us what’s happening:

It’s showing the same error
I can’t find it what’s answers so far

Your code so far


# User Editable Region

first_name = 'John'
last_name = 'Doe'

full_name = first_name + ' ' + last_name

address = '123 Main Street'
address += ', Apartment 4B'

employee_age = 28

employee_info = full_name
employee_info += ' is '
employee_info += str(employee_age)
employee_info += ' years old'

print(employee_info)


# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 11

Hi

You are asked to concatenate the string ’ years old’ to the end of employee info. I suggest you reset the step and try again using concatenation.