배열의 각 인덱스에 해당하는 값 서로 더해주기: 이중 map()
map()
function solution(arr1, arr2) { return arr1.map((arr, i) => arr.map((n, j) => n + arr2[i][j])); }