const msgStr = 'привет, kopatych3756!';
const words = ['привет', 'пока', 'кагдила', 'гдея'];
const firstWord = msgStr.replace(/[^А-ЯЁа-яёA-Za-z].*/, '');
if (words.includes(firstWord)) {
console.log(`слово ${firstWord} есть в массиве`);
} else {
console.log(`слова ${firstWord} нет в массиве`);
}