##
$ARRAY1 = [
'answer',
'first',
'answer',
'second'
];
####
my @questions;
for (qw(first second)) {
my %pending;
$pending{answer} = $_;
push @questions, \%pending;
}
Dump \@questions;
####
$ARRAY1 = [
{ answer => 'first' },
{ answer => 'second' }
];