// Redirige a una página aleatoria function redirectRandomVideo() { const totalPages = 27; const randomPage = Math.floor(Math.random() * (totalPages - 2 + 1)) + 2; // Genera un número entre 2 y 27 window.location.href = `video-${randomPage}.html`; }