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 trialadam felsen
199 PointsI can't figure out how to create the constant and assign it to a string. Please point me in the right direction
I'm new to coding and I watched the video already.
// Enter your code below
var str = "favDessert"
let str = "favDdessert"
1 Answer
jcorum
71,830 PointsThe name of the constant is supposed to be favDessert, and you were to assign it a String containing your favorite dessert. Since you didn't give one, I opted for "ice cream":
let favDessert = "ice cream"