Build an Employee Profile Generator - Step 11

Tell us what’s happening:

I have written right answer then also its showing incorrect. WHAT TO DO?

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

employee_info = full_name + ' is ' + 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/145.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 11

This should be concatenated to the existing employee_info assignment → employee_info = full_name + ' is ' + str(employee_age)

Your concatenation method is correct but the test expects you to append to the current last line:

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

@ram.dev Please try not to simply repeat the previous comment. If you don’t have anything to add you don’t need to make a new comment.