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 trialWilliam Cundiff
9,678 PointsChallenge Task 4 of 5
I receive this message "Oops! It looks like Task 3 is no longer passing." I don't understand why.. any ideas?
3 Answers
Kristen Law
16,244 PointsCan you post your code? Did you put the <label>
tags after the <input>
tags?
William Cundiff
9,678 Pointsi had the label tags before the input tags.. That's what the issue was.
Thanks, Kristen!
Sreng Hong
15,083 PointsHi William. When you get the message bummer: "Oops! It looks like Task 3 is no longer passing.", it means you've deleted the old code that had before in task 3. So after passing the task 3 and go to task 4, in task 4 you shouldn't try to change or delete the code from task 3. Hope this help.
Kristen Law
16,244 PointsSometimes it's due to deleted code, but this error can also happen in other situations. From past experience, sometimes the new code isn't quite what the compiler/code checker expected, or there may have been an error that wasn't caught in a previous task, or there may be something wrong with the syntax that makes the compiler think the previous task's code was incorrect.
In this case, the code was just in a different order than the code checker expected it to be. The <label>
tags needed to be after the <input>
tags, and since they were put before, I think it caused the compiler to believe that the code from the previous task was incorrect. I had this issue too at first, no code was deleted.
Sreng Hong
15,083 PointsYeah, you got the point. I just said it in general. Thank by the way.