Build an Employee Profile Generator - Step 9

Tell us what’s happening:

Hello,
i have no errorsbut my code doen’t work. Please help me to understand

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 '
employee_info +=str(employee_age)


# 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 Norton/146.0.34394.179

Challenge Information:

Build an Employee Profile Generator - Step 9

Github Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-employee-profile-generator/695fd3dde03273875e5d6709.md at main · freeCodeCamp/freeCodeCamp · GitHub

This step is trying to show you what will cause a TypeError.

You are asked to concatenate employee_age to the existing employee_info assignment. You are not asked to use the str() method in this step.

You will fix the error in the next step.