map 함수를 연습하기 좋은 문제
let solution = (arr1, arr2) => arr1.map((el1, index1) => el1.map((el2, index2) => el2 + arr2[index1][index2]));