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 Enumerations and Optionals in Swift Introduction to Optionals Nil Values in Collections

Not sure what im doing wrong in this challenge

so this is my code

let movieDictionary = ["Spectre": ["cast": ["Daniel Craig", "Christoph Waltz", "Léa Seydoux", "Ralph Fiennes", "Monica Bellucci", "Naomie Harris"]]]

// Enter code below if let movie = movieDictionary["Spectre"], let cast = movie["cast"] { var leadActor: String = cast[0] }

optionals.swift
let movieDictionary = ["Spectre": ["cast": ["Daniel Craig", "Christoph Waltz", "Léa Seydoux", "Ralph Fiennes", "Monica Bellucci", "Naomie Harris"]]]
 if let movie = movieDictionary["Spectre"], let cast = movie["cast"] {
    var leadActor: String = cast[0]
 }
// Enter code below

1 Answer

Heidi Puk Hermann
Heidi Puk Hermann
33,366 Points

Hi,

As far as I can see your code looks right, but you have to write it after the comment (// Enter Code Below), else it cannot register it... The challenges are quite picky with that detail :)