sub return_array { my @array = (1, 2, 3); foreach my $element (@array) { calculate($element); } return \@array; }