You have to dereference the array values in order to access them. if you wanted to access all of the values of the arrays in the sorted array you could do something like this.
foreach (@sorted) {
print "@{$_}\n";
}
That will give you each element in each array of their own line. HTH.
-Prime