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!
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 trial

Cem Ozcan
225 PointsCreate a constant named title and assign it a string: "A Dance with Dragons". and let title = " A Dance with Dragons"
my answer is on top. I thing its correct but it says that it is wrong. What can i do
let title = " A Dance with Dragons"
1 Answer
William Li
Courses Plus Student 26,867 PointsYou put a space before A Dance ..., get rid of the space and you'll pass.
let title = "A Dance with Dragons"
Cem Ozcan
225 PointsCem Ozcan
225 PointsThanks a lot :)