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?

Matt George
Matt George
2,507 Points

Let's create a dictionary that contains the currencies of the various countries along with their country codes. The coun

WHY

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

1 Answer

Hi 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
Matt George
2,507 Points

Hey there Petar I copied your code and it still doesn't work :/

Hey 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