Hello Monks. Suppose I have an array of a random number of unsorted strings. I want to grab all the strings inside the array that contain an “r” and sort those in ascending alphabetical order. For the elements that are left, find the ones that start with an “e” and sort those by ascii value of their third character. And for the ones that are left reverse sort by their last letter alphabetically. So basically I’m applying three different sorting methods to different items in the array. What is a good way to do this in Perl? How do I “pick and choose” which items in the array I will sort, and make sure I leave the other items alone?