Processing to make 2 array in one

int[] a = { 1, 2, 25 };
int[] b = { 9, 18 };
int[] c;
c = concat(a, b);
printArray(c);