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 trialGabriel Mititelu
5,881 PointsI think it's personal.
In the next code challenge, the compiler won't accept my code. I've run it in a playground, stared at it for 10 minutes, tried to think of why on earth that might be and I still haven't figured it out.
The challenge says :
Your job is to assign the string containing the value for the lead actor (which for the sake of the example is at position 0 in the array) to the variable leadActor.
And this is the code :
let movieDictionary = ["Spectre": ["cast": ["Daniel Craig", "Christoph Waltz", "LÊa Seydoux", "Ralph Fiennes", "Monica Bellucci", "Naomie Harris"]]]
var leadActor: String = ""
// Enter code below
if let movie = movieDictionary["Spectre"], let cast = movie["cast"] {
var leadActor: String = cast[0]
}
Can somebody give me a hint on what is it that I am doing wrong ? That'd be much appreciated.
Thank you.
Gabriel Mititelu
5,881 PointsGabriel Mititelu
5,881 PointsIt does help. Thank you!