I enjoyed solving this problem. My process goes as follow:
`getData() - function in javascript are code that performs a particular task when called. didnt_submit and assigned it to an empty array - variable in javascript are like a container that holds different type of information, while array in javascript are ordered list or collection of datagetData() function then fetches the data of all students and students who submitted from the google sheet which i have converted to .txt format split() method - the split() method in javascript takes a string/strings and return a new array of that string/stringsforEach() method in javascript - forEach() method loops through an array and executes a call back function once for each element in the array. Call back function are function that are passed into another function and are only executed after another function has finished executing. In this case, everytime the loop goes through the array of all the students, it checks if the email string returned from each loop is included in the array of students who submitted, if its not, it then pushes the string into the empty array didnt_submit that was declared earlier on 