Creates a new array from two existing arrays.
public static Object[] arrayUnion( Object[] array1, Object[] array2 )
array1
The first array to join.
array2
The second array to join.
Returns the union of the two arrays. If either array is null, null is returned. If the length of either array is zero, the first array is returned.