reduce 함수를 몰랐다면 좋은 연습기회 같습니다.
let solution = (arr) => arr.reduce((acc, cur) => acc + cur, 0) / arr.length;