以下のコードで、学生の平均点を計算するために空欄に入るコードはどれですか? ```javascript const students = [ { name: '田中', score: 85 }, { name: '佐藤', score: 92 }, { name: '山田', score: 78 } ]; let total = 0; students.forEach(________); const average = total / students.length; ```