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?

Maria Eugenia Sequeira
Maria Eugenia Sequeira
1,018 Points

Stuck at Dictionaries

I am new at this and my english doesnt help neither. I dont know how do this and if someone could help me it would be great, thanks

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

1 Answer

hey try this

let ukCurrency = currencies["UK"]

Basically you are telling the program to access the 'UK' Key and assign its value 'pound' to the new variable.

Keep it up :)