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 trial1,181 Points
Stop, drop and wtf is wrong with this code?
Is anyone else getting an error message
I made a list, added stop drop and roll, and the system is telling me that my work is incorrect. Wtf!?!
13 Answers
Stone Preston
42,016 Pointsyou must capitalize the first letter and not include the quotes
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
The code challenge engine is very picky.
Cecil Quist
2,851 PointsK, thanks. i'll give that a try.
Cecil Quist
2,851 PointsThanks; it worked
1,181 Points
<ol>
<li>stop</li>
<li>drop</li>
<li>roll</li>
</ol>
Francisco Sandoval
5,657 PointsI tried both and they don't work am stuck, getting frustrated.
Stone Preston
42,016 Pointsthe selected best answer works. please post the code you are using that is failing.
Francisco Sandoval
5,657 Points<oL> <li>Stop</li> <li>Drop</li> <li>Roll</li> </ol>
Stone Preston
42,016 Pointsyou are going to need to look at the markdown cheatsheet to see how to post code in the form, html tags wont show up without the proper markdown.
Francisco Sandoval
5,657 Points<ol> <li>Stop</li> <li>Run</li> <li>Roll<li> </ol>
Francisco Sandoval
5,657 Points <li>Stop</li>
<li>Run</li>
<li>Roll<li>
</ol>```
Stone Preston
42,016 Pointsthe list items should be
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
``
not
<ol>
<li>Stop</li>
<li>Run</li>
<li>Roll</li>
</ol>
Francisco Sandoval
5,657 Points <li>Run</li>
<li>Roll</li>
</ol>```
Stone Preston
42,016 PointsDrop, not Run.
Francisco Sandoval
5,657 Points <li>Run</li>
<li>Roll</li>
</ol>```
Francisco Sandoval
5,657 Points <li>Stop</li>
<li>Run</li>
<li>Roll</li>
</ol>```
Francisco Sandoval
5,657 PointsIt doesn't work.
Francisco Sandoval
5,657 Points <li>Stop</li>
<li> Drop</li>
<li> Roll</li>
</ol>```
Francisco Sandoval
5,657 PointsOops... Drop doesn't work either...
Francisco Sandoval
5,657 PointsIt worked. Thanks
Adam Sackfield
Courses Plus Student 19,663 PointsAdam Sackfield
Courses Plus Student 19,663 PointsA preview of your code would help!