in reply to Re^2: Sorting RSS items out of XML::RSS
in thread Sorting RSS items out of XML::RSS

You need to use array references rather than arrays, so replace your:
push @megarray, @holdarray;
by
push @megarray, \@holdarray;