Build an Employee Profile Generator - Step 11

Tell us what’s happening:

I believe I have written the prompt in correctly however, still not passing this part of the module. Where am I going wrong.

Your code so far

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

# User Editable Region

employee_age = 28
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 11

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

While inconvenient, the test runner prefers that the employee_info variable is set up all in the same line.

is it not all in the same line within my example? and if not now can I correct the prompt

aren’t these two lines?

Riight, I have finally figured it out now