Sorting means to sort an array of data. Say you had an array of numbers
[2,4,6,1,3,5] and you sorted it (in ascending order), you'd get
[1,2,3,4,5,6].
There are many different types of sorting, refered to as sorting
algorithms. You can find out about some of the primary ones (bubble,
selection, insertion, merge, and quick)