Describe how a selection sort works.
Starting at the left, find the smallest item in the list. When you find it, move it to the 1st position in the list, and move the item that was in the first position to the position the item was found in. Now, repeat the process, working from the next position until the 2nd to last position has been set.