Help for this page
$hashref->{personal} = $arrayref; # Results in: ... designation => "Manager", personal => ["Country", "location", "language"], }
@{$hashref}{@$arrayref} = (); # Results in: ... location => undef, language => undef, }