Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ludwing Najera
4,596 Pointsinvalid value? what is going on here...
ok, my code challenge says this: Let's add the year of the album to the 'albumMutable' variable. Where the key is a NSString 'year' and the value is also a NSString '1969'. I did that, but it says: Bummer! The year set is not the correct value. here is my code…
NSDictionary *album = @{ @"title": @"Abbey Road", @"artist": @"The Beatles"}; NSMutableDictionary *albumMutable = [NSMutableDictionary dictionaryWithDictionary:album]; [albumMutable setObject:@1969 forKey:@"year"];
PLEASE HELP ME! D:
2 Answers

John W
21,558 PointsWhat you have there, @1969
, actually produces an NSNumber
. To produce an NSString
, you need to quote the actual string just like what you did with @"year"

Ludwing Najera
4,596 Pointsok ill do that
Kal K
13,332 PointsKal K
13,332 PointsThat means that there is an error in the video because I ran into the same problem because it was not quoted in the video at the Mutable part