Build an Employee Profile Generator - Step 2

Tell us what’s happening:

i can’t get the output intended, can you help please?

Your code so far

first_name = 'John'

# User Editable Region

last_name = 'Doe'
full_name = 'first_name' + 'last_name'
Print(full_name)

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

Challenge Information:

Build an Employee Profile Generator - Step 2

Python keywords are case sensitive, and there is no function called Print() with an uppercase P.

Print("Hello") # ERROR
print("Hello") # Works

use print instead of Print