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 trialRaphael Lowe
549 PointsHow do you put the value from "UK": "Pound" into a constant named ukCurrency using the removeValueForKey command?
I am on the second objective of what is a dictionary.
//We wil be creating a dicitonary with various country names and there
//country codes
let currencies = ["US": "Dollar", "UK": "Pound", "JP": "Yen"]
let ukCurrency = currencies.removeValueForKey("UK")
2 Answers
Steve Hunter
57,712 PointsHi Raphael,
Your question seems unrelated to the challenge you've linked it to. If your issue is that you can't get beyond the challenge, then the question is not asking you to remove the element. The question is Assign the value for key "UK" to a constant named ukCurrency; so that just looks like:
let currencies = ["US" : "Dollar", "UK" : "Pound", "JP" : "Yen"]
let ukCurrency = currencies["UK"]
Steve.
Caleb Kleveter
Treehouse Moderator 37,862 PointsThis should work:
let ukCurrency = currencies["UK"]
Raphael Lowe
549 PointsIt did work, but why doesn't the removeValueForKey command work?
Caleb Kleveter
Treehouse Moderator 37,862 PointsBecause it's a constant verses a variable you can't change it's content after it's been created.
Raphael Lowe
549 PointsRaphael Lowe
549 PointsI understand now, your help is greatly appreciated.
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsHey, not a problem! :-)
Steve.