in reply to duplicate keys on hash
use Data::Dumper; my %hash = ( 2 => ['BBB', 'EEE'], ); print Dumper \%hash; [download]
-- tune