my @array = qw(2aa 2ba 12kf 9cn 9vn 21sg); my @sorted = join("\n", sort {$b <=> $a} @array); print $#sorted; # Prints the index of the last element in the array @sorted = sort {$b <=> $a} @array; print $#sorted;