以下のコードで、学生の名前だけを抽出するために空欄に入るコードは何ですか? ```javascript const students = [ { name: "田中", score: 80 }, { name: "佐藤", score: 90 } ]; const names = students.______(student => student.name); ```