Build an Employee Profile Generator - Step 15

Tell us what’s happening:

i cant progress it keeps saying “you should update”

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 ' + str(employee_age) + ' years old'
print(employee_info)
experience_years = 5
experience_info = 'Experience: ' + str(experience_years) + ' years'

# User Editable Region

print(experience_info)
employee_card = f'Employee: {full_name} | Age: {employee_age}'
position = 'Data Analyst'
salary = 75000
employee_card=f'Employee: {full_name} | Age: {employee_age} | Position: {position} | Salary: ${salary}'
print (employee_card)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0

Challenge Information:

Build an Employee Profile Generator - Step 15

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

Welcome to the forum @army.rorie

You should update…

You reassigned the variable instead of updating the existing value.

Happy coding

You need to delete the line employee_card = f'Employee: {full_name} | Age: {employee_age}' and keep only the updated one.