There are multiple ways of concatenating two arrays but since you asked the easiest one, it has to be using addAll, take a look here.
Example:
public static void main(String[] args) {
String[] s1 = new String[]{"D", "a", "r", "t", "h" };
String[] s2 = new String[]{"V", "a", "d", "e", "r" };
String[] res = ArrayUtils.addAll(s1, s2);
System.out.println(Arrays.toString(result));
int[] in1 = new int[]{1,2,3};
int[] in2 = new int[]{4,5,6};
int[] result2 = ArrayUtils.addAll(in1, in2);
System.out.println(Arrays.toString(result2));
}
OUTPUT
[D, a, r, t, h, V, a, d, e, r]
[1, 2, 3, 4, 5, 6]