>>106778740
<!DOCTYPE html>
<html>
<head>
<title>Random YouTube Video Picker</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Random YouTube Video Picker</h1>
<button onclick="pickRandom()">Pick a Random Video</button>
<script>
// Replace these with the video IDs from your chosen channel
const videoIDs = [
"dQw4w9WgXcQ",
"kxopViU98Xo",
"9bZkp7q19f0",
"3JZ_D3ELwOQ"
];
function pickRandom() {
const randomID = videoIDs[Math.floor(Math.random() * videoIDs.length)];
const url = "https://www.youtube.com/watch?v=" + randomID;
window.open(url, "_blank");
}
</script>
</body>
</html>