Array PostgreSQL

postgres=#
postgres=# SELECT ARRAY[1,2] || ARRAY[[3,4]] AS array;
          array
--------------------------
 [0:1][1:2]={{1,2},{3,4}}
(1 row)
postgres=#