123
AddStudent: add a student to the array of students to a specified location in this array (i.e. takes the student object and the array index as parameters).
#include <vector>
using namespace std;
vector<string> students;
students.push_back(studentNameString);