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 trialNarek Grigoryan
717 Pointsname = ("narek") name = treehouse = ("Tree") + ("house") say you didn't use + sine. I dont understand ???? any hap
this is how i answer the quiz give Bummer use a + sine
2 Answers
Steve Hunter
57,712 PointsHi Narek,
You don't need the brackets around your strings - you can omit those, although they do no harm.
name = "Steve"
treehouse = "Tree" + "house"
You also need to separate your code onto two lines. And you are assigning the value "Tree" + "house" into the variable called treehouse
- omit the name =
that you have before it. Your code should look like the two lines above.
I hope that helps.
Steve.
Narek Grigoryan
717 Pointsthank you Sreve! its helps.