Using MatLabWrite a script to create cell array course_cellarray and a structure course_struct. Do this in Desktop/Online MATLAB and then copy back your code on to grader. After you initialize these variables and look at their contents over command prompt, this is the output you should be seeing. No tips or tricks for this question. The syntax is shown in the lecture video as well as lecture slides CELL ARRAY >> course_cellarray course_cellarray = 1×3 cell array {'CS'} {[20]} {1×4 double} (MATLAB does not give you a preview of the contents in a cell, if they are vectors/matrices. You can view them by accessing them using { } brackets) >> course_cellarray{3} ans = 56 43 45 54 STRUCTURE >> course_struct course_struct = struct with fields: dept: 'CS' number: 20 enrollment: [56 43 45 54]