How do you sort an array in descending order?
array.sortDesc();
array.sort(function(a, b) { return b - a; });
array.reverse();
array.sort();