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 trialJohn Bartholomew
226 PointsI'm working on a strings problem and can't seem to figure out what I'm doing incorrectly.
Can't figure this out.
name="ryan"
subject="Treehouse loves "+"Ryan"
2 Answers
Albert G
4,142 Pointsthey want you to use a variable for the second part of the challenge so the correct solution would be
subject = 'Treehouse loves ' + name
Krishna Pratap Chouhan
15,203 PointsYou might find it funny but change the
name="Ryan"
And the same code would work fine. Probably because that's how they are testing our code.
But yes they want you to use variable name rather than the value in name variable itself.