in reply to Re^2: Sorting array with multiple values per keys
in thread Sorting array with multiple values per keys

foreach $Elements (@Array) { print $Elements->[0] . 'x' . $Elements->[1]; }
Loop variables in foreach loops must be scalars, but scalars can be array references.