Consider the following code… const studs = [  { id: 1, name:…

Consider the following code… const studs = ; Which of the following code snippets correctly creates a new list containing the names (not ids or objects!) of students who have a grade of 80 or higher? A studs.filter(stud => stud.grade >= 80);   B studs.filter(stud => stud.grade >= 80).name;   C studs.reduce((acc, stud) => {  return stud.grade >= 80 ? : acc;}, ;}, []);