Auto changing bot status help

I’m trying to get my bot status to auto change the lyrics to Snake Farm. Changing my status every 5 seconds doesn’t hit any rate limits, I’ve been doing it forever but only with 2 entries. Here I can’t seem to get it to work. I’ve asked a friend for help, we ended up here, and basically for some reason it goes to 3 and doesn’t change anything. We don’t know why.

Blockquote
var lyrics = [‘Snake farm’, ‘It just sounds nasty’, ‘Snake farm’, ‘It purty much is’, ‘Snake farm’, ‘It's a reptile house’];
bot.on(‘ready’, () =>{
changeLyric();
function changeLyric(){
for (var x = 0; x <= 5; x++) {
bot.user.setActivity(lyrics);
setInterval(() => {
}, 5000);
if(x == 5){
}
}
}
function changeLyricRun(){
//changeLyric();
}
})

TIA