├── README.md ├── index.js └── index.html /README.md: -------------------------------------------------------------------------------- 1 | nothing to see here... yet 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const int = Math.ceil(Math.random() * 76) 2 | const url = `https://www.youtube.com/embed/videoseries?list=PLDxTQYPyq4JTRvdmYDiykyOdoEjjyuQgI&index=${int}&autoplay=1` 3 | const embed = document.getElementById('embed') 4 | embed.src = url 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | --------------------------------------------------------------------------------