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?

Why isn't this working.

let currencies = [ "US" : "Dollar", "UK" : "Pound", "JP" : "Yen"] let ukCurrency ;["UK"]

The system says its wrong why?

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

2 Answers

To call a dictionary, you use the variable or constant name you assigned it, followed by square brackets, and the key for the value you're attempting to retrieve. For example:

// Declaring myDictionary
var myDictionary = ["key1" : "value1", "key2" : "value2", "key2" : "value2"];

// Retrieving a value from myDictionary
myDictionary["key1"]; // returns "value2"
Kristian Egebæk-Carlsen
Kristian Egebæk-Carlsen
8,902 Points

You are trying to create a constant called ukCurrency, but when you assign a constant you need the '=' to let to program know what the constant should be. Then you need to acces your dictionary to find the value for "UK". Therefore the constant declaration should be let ukCurrency = currencies["UK"]. This will create a new constant ukCurrency and assign the value of currencies["UK"] which is "Pound"