Ask the user to enter a word. Keep asking them to enter a word until they enter the letter 'q'.
Make a string array of Pet names. Write a function to convert all the names in the array to lower case strings.
Make any string array of student names. Write an arrow function that takes the string array as a parameter and returns a new array of Student objects using the class below
class Student{
constructor(name){
this.name = name;
}
}