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 trialLudwing Najera
4,596 PointsImmutable constant assigning key "UK"
the quiz is asking me to assign a key called "UK" in a constant called "currencies" so I used removeValueForKey to retrieve the key and it puts an error in the console saying "removeValueForKey is a mutable only ability" and i do not know what else to use. Help!
1 Answer
Vittorio Somaschini
33,371 PointsHello Lundwing.
If I got it right you are in the 2/2 task of the dictionary part.
I had to go back to the challenge as I could not understand the task precisely through your description, but here is a hint. You do not need to edit the Dictionary here. They just want you to create a new constant called ukCurrency (let ukCurrency). Then we need to place what is stored in the dictionary currencies that has the key "UK" in there, so:
let ukCurrency = currencies["UK"]