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 trial

iOS Swift Basics An Introduction to Swift Programming Working With Constants

Nelson Lecuane
Nelson Lecuane
228 Points

What's the cause of the error please

I am unable to find our why I am failing to pass the test, can someone help me please?

constants.swift
// Enter your code below
Let = favorite Dessert str"

1 Answer

Matthew Long
Matthew Long
28,407 Points

There are a few issues with your code.

First, you capitalized the l in let. Then you placed the equal sign before your constant name, favoriteDessert which also has a space in it that shouldn't be there. Next you forgot the colon after the name of your constant. This is how you state the type, String. Lastly, you forgot to actually set the value of your favorite dessert! Be sure to keep this value between quotations.

let favoriteDessert: String = "cookies"
Nelson Lecuane
Nelson Lecuane
228 Points

Thank you for your kindness