I have a Student class that creates an object: This is the constructor
public Student(string StudentID, string Name, string Status, Enum StudentMajor, string[][] CompletedCourses)
You can see that the field CompletedCourses is a jagged array, the idea is that it stores the course that the student has completed and the grade(s) they received in the course.
This is how I created the object in the main class but I don't think it's done correctly:
Student student = new("00069110", "Haaland", "Full-time", Majors.Computer_Information_Systems,
new string[][]//What's the correct to populate this jagged array
{
//Here the course is supposed to be in an array and "A"(the grade) is supposed to be in another array
new string[] {"ITEC_120_Introduction_to_Computer_Hardware", "A"}
});