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 (retired) Collections What is a Dictionary?

Paul Denlinger
Paul Denlinger
2,380 Points

What is the best way to assign the value for a dictionary to a new constant?

My code is:

let ukCurrency = ["UK" : "Pound"] println(ukCurrency)

But I am told this is the wrong answer. What is the right way to do this?

dictionaries.swift
let currencies = ["US" : "Dollar", "UK" : "Pound", "JP" : "Yen"]
let ukCurrency = ["UK"]

1 Answer

Jayden Spring
Jayden Spring
8,625 Points

Hi,

All you are doing by creating UK Currency is adding a string to an array which is UK. The challenge I believe wants you to assign the value of the key "UK" to a new constant ukCurrency.

So you would want to say; let ukCurrency = currencies["UK"]

If you this was an oversight fair enough, but you may want to re watch or play around with array's in the playground to grasp their basic functionality.

Jayden