Montei o código exatamente como o professor passou, mas mesmo assim não alterou o botão. Atualizei a página, fechei e abri novamente depois de ter salvo as alterações e não mudou de 'Alugar' para 'Devolver. Segue código.
function alterarStatus(id) {
let gameClicado = document.getElementById(`game-${id}`);
let imagem = gameClicado.querySelector('.dashboard__item__img');
let botao = gameClicado.querySelector('dashboard__item__button');
if(imagem.classList.contains('dashboard__item__img--rented')) {
imagem.classList.remove('dashboard__item__img--rented');
botao.classList.remove('dashboard__item__button--return');
botao.textContent = 'Alugar';
} else {
imagem.classList.add('dashboard__item__img--rented');
botao.textContent = 'Devolver';
botao.classList.add('dashboard__item__button--return');
}