-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.html
79 lines (78 loc) · 4.35 KB
/
new.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refresh Wheel</title>
</head>
<body>
<h1 style="color: #fff;">Hello chat, I am just here to refresh the wheel. Ignore me!</h1>
<script>
const prizes = [
"Riding on the highway on your motorbike with your bike gang",
"Artists with number(s) in their name", // thanks kseniks
"Acoustic (no MTV Unplugged at all)",
"6am drugged out nightclub vibes",
"Nobody knows this song, but I like it",
"Sitting around a campfire under the stars with your best friends type song",
"This song feels like it shouldn't work, but somehow it does",
"Sneaking through the house at midnight without waking anyone type music",
"You're being chased by a bad guy type music!",
"Nobody makes music like they do", // thanks Mylvan
"This is playing in the background as you realize you forgot your best friend's birthday",
"Drunk on Tuesday woops kinda vibe",
"Summer vacation, laying on the beach vibes",
"Song from when you were growing up",
"Remember that moment where everything was great?",
"This typical fitness club type music (no Call On Me!)",
"The sun is setting and the streets turn grim type music",
"Getting kicked out of class at primary school vibes",
"Coming home and your spouse is in bed with another person type song",
"Telling your boss to go fuck himself vibes",
"You're standing on a cliff with the wind in your hair type melody",
"The perfect road trip song",
"You wake up and somebody already made breakfast for you type song",
"The song that should play when you're being awesome in an online game",
"Annoy everyone on the bus with your bt speaker and this song",
"Electronic Music like you're on a festival mainstage",
"Chilling in your spaceship cruising through the galaxy type tune",
"The new generation can't appreciate this art",
"Stuck in a traffic jam on Monday 6pm vibes",
"Friday after work home alone no neighbours vibe",
"The theme for getting shit done",
"This tune is fucking stoned man",
"This tune makes me think about somebody",
"This plays when you're getting ready for the best party of your life",
"This plays while you're locked in an epic staring contest",
"Waking up in a dream and realizing you can fly type song",
"It's the end of the world, but somehow you're at peace type music",
"Reggae or Dub. If you don't know what dub is, pick a reggae song",
"An even better remix of an already great song",
"You're on a lazy Sunday drive through the countryside type tune",
"An alien visits you and requests to hear a song from earth",
"They're horrible when performing live, here's the proof",
"I'm sorry this is from my country",
"You're in a noir detective movie walking through a rainy city at night",
"You're dramatically walking away from an explosion in slow motion type song",
"This song plays during the credits of the movie about your life",
"You're slow-dancing under fairy lights in a moment you'll never forget",
"A song you wouldnt wanna hear in the doctors waiting room", // thanks Dutch
"Dancing barefoot in a field at sunset type beat",
"This song lives rent-free in my head at the moment",
"You decide! Pick any song you like, disregard the category!"
];
// Function to shuffle the array
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
const randomizedPrizes = shuffleArray(prizes);
//console.log(randomizedPrizes);
localStorage.setItem('wheelResults', JSON.stringify(randomizedPrizes));
</script>
</body>
</html>