http://www.perlmonks.org?node_id=11104346

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi there Monks!

Is it possible to add an arrayref:
my $arrayref = [ 'Country', 'location', 'language' ];

To a hashref:
my $hashref = { 'name' => "Harsha", 'designation' => "Manager" }

push %$hashref{personal},$arrayref;

Thanks for looking!