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.

christina myrie
2,621 Pointshow do you do the second part of the objective
when they ask me to add stop,drop and roll to the list it keeps saying stop should be the first one and i put that
4 Answers

Wayne Priestley
19,579 PointsHi Christina,
It's a simple typo I'm afraid:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
Capital S, D and R

Gloria Dwomoh
13,104 PointsCan you show us your html ?

christina myrie
2,621 Pointshow would i show you that

Gloria Dwomoh
13,104 PointsCopy paste what you have done so far or take a picture of it ...how ever you want. Just show us your code so we can see where the problem lies at :)

Gerard Weppler
4,357 PointsCan you please upload the code so I can try to help you?

christina myrie
2,621 Pointshow wold i show that

Ken Alger
Treehouse TeacherChristina;
If you look below the area in which you type your response there is a link to the Markdown Cheatsheet which explains how to post code.
That being said, it sounds like you are on Task 2 of this challenge since you are asking about adding Stop, Drop, and Roll to the list, correct?
The challenge asks us to, add the following list items to the ordered list: "Stop", "Drop", and "Roll". So inside the ordered list <ol></ol>
tags we created in Task 1, we need to add the aforementioned list items. So our code would look something like:
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
The ordered list elements tells the browser to number the list items that are within the confines of the ordered list tags. As you proceed through the challenge be sure to check the preview to see how ordered and unordered lists behave in the browser.
Hope it helps and happy coding,
Ken

christina myrie
2,621 Pointsi've done that but it keeps saying Bummer! The first list item should be "Stop"

christina myrie
2,621 Points<ol>
<li>stop</li>
<li>drop</li>
<li>roll</li>
</ol>
this is what i've done so far and it keeps saying its wrong
Wayne Priestley
19,579 PointsWayne Priestley
19,579 PointsHere is a link to explain how to use Markdown to post your code How to post code