my %arrays = ( array1 => [qw( a b c )], array2 => [qw( d e f )], ); my @combined = ( @{ $arrays{array1} }, @{ $arrays{array2} } );