Build an Employee Profile Generator - Step 5

Tell us what’s happening:

I checked my code well but it still not working I don’t know what’s wrong exactly

Your code so far

first_name = 'John'
last_name = 'Doe'
print(first_name)
print(last_name)
full_name = first_name + ' ' + last_name
print(full_name)
address = '123 Main Street'  

# User Editable Region

address += ' Apartment 4B'

# User Editable Region

print(address)  

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/26.3.1 Safari/605.1.15

Challenge Information:

Build an Employee Profile Generator - Step 5

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

Welcome to the forum @segabah54!

Does your address string match the instructions?

, Apartment 4B

Happy coding!