in reply to Re: How do I combine arrays and array of hashes?
in thread How do I combine arrays and array of hashes?

As fullermd notes, the OP's question is a bit unclear. If the intent was to combine arrays of hashes and produce a simple array (an operation not subject to problems with conflicting keys), fullermd's solution can be modified to:
@aoh3 = map {values %$_} (@aoh1, @aoh2);