Build an Employee Profile Generator - Step 9

Tell us what’s happening:

help me with the code thats above have tried and failled to move to the next step

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


name_age = full_name + str(employee_age)
employee_info = name_age + address


# 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 9

Welcome to the forum @omaratomdenis1!

You were not asked to create a new variable name_age.

Update the employee_info assignment to also concatenate employee_age at the end.

This instruction is asking you to concatenate employee_age to end of the existing employee_info variable assignment, which was:

employee_info = full_name + ' is '

You may want to reset this step to restore the starting code and try again.

Happy coding!