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 trialkevin burns
2,570 Pointsstuck!!!
I think my code is good ?? help what is wrong???
states = [
'ACTIVE',
['red', 'green', 'blue'],
'CANCELLED',
'FINISHED',
5,
]
states = [ 'ACTIVE', ['red', 'green', 'blue'], 'CANCELLED', 'FINISHED', ]
x = ['red', 'green', 'blue']
states.remove(5)
states.remove(['red', 'green', 'blue'])
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! You've overwritten the original value of states
with your own array of the same name. Only one line needs to be removed to pass, but one line is unnecessary. If I simply remove these two lines of code, it passes both steps:
states = [ 'ACTIVE', ['red', 'green', 'blue'], 'CANCELLED', 'FINISHED', ]
x = ['red', 'green', 'blue']
On a side note, it's a good idea to avoid doing things that are not explicitly asked for by the challenge. Even if functional, it can cause the challenge to fail.
Hope this helps!
kevin burns
2,570 Pointsgot it .. and it worked !! thank you!!!