my $items = [ {'value' => '1'}, {'value' => '2'}, {'value' => '7'}, ]; my @bag; for (@$items) { push @bag, $_->{'value'}; }