Build an Employee Profile Generator - Step 8

Tell us what’s happening:

i have tried several ways answering this question…but it still says wrong…how to solve this

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
employee_info=full_name+' is '+employee_age

# User Editable Region

print(employee_info)

# 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/147.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 8

Take a minute and Read the instructions for step 8 again. You are working ahead of the requirements based off of the code posted. It asks you to do a specific thing and you’ve done a little bit more than asked.

Refresher On String Concatenation

P.S. Welcome to the community. Happy Coding! If you still have trouble after reading over the curriculum material reply to me and I can help further!