-8, -6 , -1, 5 , 8
In this quetion, we have list of numbers and we want to consider which of these lists have the numbers listed from the smallest to the largest.
To do this, we shall be considering the list one after the other;
The key to do this is knowing that positive numbers are larger than negative numbers. Also for the negative numbers, the bigger in number the negative number is, the smaller it is. For example -8 is less than -2
So, let us have the consideration one after the other;
a. -8, -6 , -1 , 5 , 8
For this list, we can see that -6 is greater than -6 , -1 is less than 5 and 5 is less than 8; so we have the answer here already.