Im making a bot that prevents users from talking about age, but i have the problem, that i don't know how to solve. If a user inputs "i am (number)" it should reply with " Don't talk about age here!". This is my code (the part i need help with).
var age = ['how old', 'how old am i', 'how old are you', `i am ${!NaN}`];
if (age.includes(message.content)) {
message.reply('Don't talk about age here!')
}
i am ${!Nan} should be any number but it doesn't work.