sort()
I found out how to you use the Sort() method to put an array into ascending order but I can't seem to find a way to sort the array into descending order.. is it part of sort?
I don't know of any way unless you somehow change comparator. But why bother? If you have an array sorted in ascending order, you can always iterate backwards through the array, or if you wish, copy it to another array iterating backwards and thus reversing the order.