section1.addStudent(student1);
student1.addSection(section1);
section1.addStudent(student2);
student2.addSection(section1);
course.addSection(section1);
course.addSection(section2);
// Add Students 3 & 4 to Section 2
section2.addStudent(student3);
student3.addSection(section2);