Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJimmy Rodriguez
Courses Plus Student 334 Pointschallenge Task 3 of 3
stuck creating a variable x and y
name = 'jawstech'
treehouse = 'Tree' + 'house'
email_greeting = 'name' + 'Treehouse'
2 Answers
Brian Douglas
822 PointsYou have almost got it.
Remember quotations make a string, you want to call a variable.
The below is what you are looking for.
email_greeting = name + treehouse
Joshua Edwards
52,175 Pointsin part 3 you want to reference the variables name and treehouse when setting email_greeting and not set email_greeting to string values as you have in your code.