Скрипт поидее должен быть такой
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
var text = ['Kappa', 'KappaPride', 'Keepo'];
var input = document.querySelector(".js-chat_input.chat_text_input.form__input.ember-text-area.ember-view");
var click = document.querySelector(".button.float-right.chat-interface__submit.qa-chat-buttons__submit.js-chat-buttons__submit.ember-view");
setTimeout(function fn() {
input.value = text[getRandomInt(0, text.length - 1)];
click.click();
setTimeout(fn, 2000);
}, 2000);