Generate a Random Response
const greetings = [
"hello",
"hey",
"hi",
"hi there",
"good day"
];
const response = greetings[Math.floor(Math.random()*greetings.length)];
console.log(response);
const greetings = [
"hello",
"hey",
"hi",
"hi there",
"good day"
];
const response = greetings[Math.floor(Math.random()*greetings.length)];
console.log(response);