-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.93 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=h1, initial-scale=1.0">
<title>Document</title>
<script>
let arrayOfURLs = [
"https://tubitv.com/movies/299181/mst3k-the-black-scorpion",
"https://tubitv.com/movies/320103/mst3k-the-crawling-eye",
"https://tubitv.com/movies/517722/mst3k-the-dead-talk-back",
"https://tubitv.com/movies/517734/mst3k-deathstalker-and-the-warriors-from-hell",
"https://tubitv.com/movies/517733/mst3k-escape-2000-escape-from-the-bronx",
"https://tubitv.com/movies/549355/mst3k-gamera-vs-guiron",
"https://tubitv.com/movies/548870/mst3k-gamera-vs-zigra",
"https://tubitv.com/movies/312848/mst3k-giant-spider-invasion",
"https://tubitv.com/movies/517731/mst3k-hobgoblins",
"https://tubitv.com/movies/517730/mst3k-invasion-of-the-neptune-men",
"https://tubitv.com/movies/405108/mst3k-legend-of-boggy-creek",
"https://tubitv.com/movies/445963/mst3k-merlin-s-shop-of-mystical-wonders",
"https://tubitv.com/movies/295887/mst3k-night-of-the-blood-beast",
"https://tubitv.com/movies/452492/mst3k-pod-people",
"https://tubitv.com/movies/517728/mst3k-prince-of-space",
"https://tubitv.com/movies/546233/mst3k-quest-of-the-delta-knights",
"https://tubitv.com/movies/326273/mst3k-samson-vs-the-vampire-women",
"https://tubitv.com/movies/432214/mst3k-werewolf",
"https://tubitv.com/movies/440101/mst3k-zombie-nightmare"
]
function getMysteryMovie ()
{
let moviePick = Math.floor(Math.random() * arrayOfURLs.length);
console.log(moviePick);
window.location.replace(arrayOfURLs[moviePick]);
}
getMysteryMovie();
</script>
</head>
<body>
</body>
</html>