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 Collections and Control Flow Dictionaries in Swift Working With Dictionaries

Hello, need help where can I find all answers on tests. having difficulties solving from time to time.

Im stuck on task 3 of 4. Time to time I have difficulties solving them. Are there any correct answers to this tasks written to download? How can i in future find solutions when I can't solve tasks.

dictionary.swift
// Enter your code below

var iceCream = ["CC": "Chocolate Chip", "AP": "Apple Pie", "PB": "Peanut Butter"] 

iceCream["RR"] = "Rocky Road"

let applePie = ["iceCream":  

1 Answer

You want to access the dictionary using the key for Apple Pie. Assign the returned value into the applePie constant.

Access the dictionary using the key on the dictionary name iceCream["AP"]. Assign the result of that into your constant.

Hope that helps.

Steve.

Still no, but thanks anyway. Very confusing for me.