Array PostgreSQL

postgres=# SELECT array_append(ARRAY[1,2], 3);
 array_append
--------------
 {1,2,3}
(1 row)
postgres=#