/*What is the length of the two arrays?
Hint: look closely at the quotes in the classes array.*/
let classes = ["science, computer, art"];
console.log(classes.length);
//1
let teachers = ["Jones", "Willoughby", "Rhodes"];
console.log(teachers.length);
//3