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 trialjoshuawalliy
1,131 PointsWhy isn't this working.
let currencies = [ "US" : "Dollar", "UK" : "Pound", "JP" : "Yen"] let ukCurrency ;["UK"]
The system says its wrong why?
let currencies = [ "US" : "Dollar", "UK" : "Pound", "JP" : "Yen"]
let ukCurrency ;["UK"]
2 Answers
Ricardo Hill-Henry
38,442 PointsTo 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
9,189 PointsYou 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"