JavaArraysEx Add Two ArraysOn this pageEx Add Two ArraysDescriptionSome 2 arrays in one. The position 1 of the array A + position 1 of the array B = position 1 of the new array.Examplearr1 - [1,2,3,4]arr2 - [5,6,7,8]Output - [6,8,10,12]