Infelizmente não consegui realizar sozinho, porém depois que assisti a aula e comecei a pensar, entendi o código e consegui deixar ele ainda melhor!
let alterarStatus = (id) => {
let game = document.querySelector(`#game-${id}`)
let img = game.querySelector('.dashboard__item__img')
let botao = game.querySelector('.dashboard__item__button')
if(img.classList.contains('dashboard__item__img--rented')) {
alugar(img, botao)
} else {
devolver(img, botao)
}
}
let alugar = (img, botao) => {
img.classList.remove('dashboard__item__img--rented')
botao.textContent = 'Alugar'
botao.classList.remove('dashboard__item__button--return')
}
let devolver = (img, botao) => {
img.classList.add('dashboard__item__img--rented')
botao.textContent = 'Devolver'
botao.classList.add('dashboard__item__button--return')
}