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 trial2 Answers
Simon McGuirk
2,673 PointsAs Steven has pointed out, you have a typo in your question.
Having checked the quiz, you're being asked to evaluate the result of adding the string value "6" to the integer value 5. This is not the same as 6 + 5.
Hope that helps
Heather Uebel
11,505 PointsIt's going to be 65. Because when you add string "6" to integer 5, it's just going to append the integer to the end of the string. So instead of 11, you'll get 65.
Steven Parker
231,210 PointsSteven Parker
231,210 PointsWhat answer did you give? And the question has a plus sign
"6" + 5 =