QueenOfLife7037 QueenOfLife7037 13-12-2022 Engineering contestada Given two int arrays a and b, each with two elements, return a new array with four elements containing all the elements of a followed by all the elements of b.1public int[] plusTwo(int[] a, int[] b)2{3 4}