Spot the bug - #137: Spaceship Transform Mover

Why is my disco spaceship stuck in place?

const ship = document.querySelector('#spaceship');
let posX = 0;

function fly() {
  posX += 4;
  ship.style.transform = `translateX(${posX})`;
  requestAnimationFrame(fly);
}

requestAnimationFrame(fly);

Reply with what is broken and how you would fix it.