Given two arrays of integers:
const arr3 = [11, 12, 13, 14, 15,];
const arr4 = [16, 17, 18, 19, 20,];
Using For-Loop, how do I add up each element in the same position and create a new array containing the sum of each pair? Both arrays are of the same length.