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 trialMatt George
2,507 PointsLet's create a dictionary that contains the currencies of the various countries along with their country codes. The coun
WHY
let currencies ["US": "Dollar"; "UK"; "Pound"; "JP": "Yen"]
1 Answer
Petar Popovic
Courses Plus Student 23,421 PointsHi Matt, you made a tiny mistake, you put ; except : between "UK" and "Pound"
this should be correct
let currencies ["US" : "Dollar"; "UK" : "Pound"; "JP" : "Yen"]
Matt George
2,507 PointsMatt George
2,507 PointsHey there Petar I copied your code and it still doesn't work :/
Petar Popovic
Courses Plus Student 23,421 PointsPetar Popovic
Courses Plus Student 23,421 PointsHey Matt, now I see that you have more mistakes. I am sorry, I wasn't concentrate enough when I replayed first time.
Second mistake you made is that you don't have equal sign = between your constant and values in []
Like this:
let currencies = []
Third mistake is that you put semicolon after every "key" : "value" except comma ,
So this is correct answer
let currencies = ["US" : "Dollar", "UK" : "Pound", "JP" : "Yen"]
As you see you need to have a good concentration and sometimes mistakes are funny like this, but you can't see them immediately