gameOver() {
this.finalModalScore.innerHTML = this.score;
this.endGameModal.classList.add('end-game_show');
clearInterval(this.gameInterval);
document.removeEventListener('click', this.clickOnEmoji);
this.closeEndModal.addEventListener('click', () => {
this.endGameModal.classList.remove('end-game_show');
this.fillInitScore();
this.speedValueNum.innerHTML = "1";
buttonStart.addEventListener('click', buttonClick);
})
}