// Make Student Reports // Write a function called 'makeStudentReports' that takes a single argument 'data' ('data' is an array of objects). // Each object in the array represents a student and their letter grade for each example {name:'John', grade: 'A'} // makeStudentReports should return an array of strings for each item in data return a string that looks like: // '[name]:[grade]' - the name and grade values should be substituted in. function makeStudentsReport(data) { var results = []; for (var i=0; i