I have a code that responds to the user if they type the word, but I need the word in a sentence to answer
eg:
User: Hi friends
BOT:
User: Hi
BOT: The bot responds but when it is in sentence no
const responseObject = {   "hi": "Hello!",
    
};
    
if(responseObject[message.content]) {
    message.channel.send(responseObject[message.content]);   }
 
     
    