function solution(answers) { const human1 = [1, 2, 3, 4, 5]; const human2 = [2, 1, 2, 3, 2, 4, 2, 5]; const human3 = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5]; let pointAry = Array(3).fill(0); answers.forEach((answer, index) => { const human1Index = useIndex(human1, index); const human2Index = useIndex(human2, index); const human3Index = useIndex(human3, index); if (human1[human1Index] === answer) { pointA..