in reply to Array of hashes of values AND Arrays of Hashes
$array[1]->{Contact} = []; %hash = ( Contact_Tel => '1234', Contact_Name => 'Mr. Bean'); push @{$array[1]->{Contact}}, \%hash; [download]
See: here and here for more.