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

Like I already said,
@Array[0]
is inappropriate and produces a warning. Use
$Array[0]->[0]
or
$Array[0][0]
for short.