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 trialKim Du Ross
246 Pointsproblems with task one
hello when I try to check task 2 the response says oops it looks like task one is no longer working. What have I done wrong?
many thanks Kim
var_one="abcdet"
var_one[5]
var_one="er"
var_one[-2]
2 Answers
Ben Reynolds
35,170 PointsTask 2 asks you to make the second variable named "var_two", you've named it "var_one" so it's conflicting with the first one. Also, the two lines where you're checking the index aren't needed.
Kim Du Ross
246 Pointsoh yeah thanks so much