Build an Employee Profile Generator - Step 9

Tell us what’s happening:

I need help with step9.

I am trying to concatenate employee_age to the end of employee_info string.

My answer
employee_info += employee_age

What am I doing wrong?

Your code so far

first_name = 'John'
last_name = 'Doe'
full_name = first_name + ' ' + last_name
address = '123 Main Street'
address += ', Apartment 4B'
employee_age = 28

# User Editable Region



# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15

Challenge Information:

Build an Employee Profile Generator - Step 9

it seems you don’t have the employee_info variable anymore, maybe reset the step

then do not create a new line, update the existing line