Merging two JSONArray Documents

Hi
I have a requirement, where there are two JSONArray Documents as below
JsonArrayDocument-1 is :
[{object1},{object2},{object3},{object4},{object5}]

JsonArrayDocument-2is :
[{updatedobject1},{updatedobject2},{object6}]

I want to merge these 2 documents into one as below through N1QL
[{updatedobject1},{updatedobject2},{object3},{object4},{object5},{object6}]

any suggestions pls