// Zorah Fung, CSE 143 // A student object that keeps track of an id, a name and a list of grades import java.util.*; public class Student { int id; String name; ArrayList grades; }