With lists with lots of items in them, the sorting of the elements can become very important
# strListing=AlphabeticAZ ; // Sort the answers alphabetically from 0 to 9, A to Z# strListing=AlphabeticZA ; // Sort the answers alphabetically from Z to A, 9 to 0# strListing=QuantityLeastMost ; // Sort the answers, with the least frequently occuring at the top. Each amount item is alpha sorted as well.# strListing=QuantityMostLeast ; // Sort the answers, with the most frequently occuring at the top. Each amount item is alpha sorted as well.