-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordlist.js
173 lines (171 loc) · 3.96 KB
/
wordlist.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Check the source code for the questions
const wordList = [
{
word: "taylorswift",
hint: "Enchanted/Love Story/Shake It Off",
},
{
word: "justinbeiber",
hint: "Baby/Sorry/Peaches",
},
{
word: "brunomars",
hint: "Just The Way You Are/ Marry You/ Uptown Funk",
},
{
word: "theweekend",
hint: "Save Your Tears/ Blinding Lights/ Starboy",
},
{
word: "harrystyles",
hint: "Watermelon Sugar/ As It Is Was/ Golden",
},
{
word: "blackpink",
hint: "Dudu-Dudu-Du/ Kill This Love/ Boombayah",
},
{
word: "bts",
hint: "Boy With Luv/ Dyanamite/ Butter",
},
{
word: "adele",
hint: "Love In The Dark/ Rolling In the Deep/ When We Were Young",
},
{
word: "arijitsingh",
hint: "Heeriye/ Tum Hi Ho/ Apna Bana Le",
},
{
word: "prateekkuhad",
hint: "Tum Jab Paas/ Cold-Mess/ Kasoor",
},
{
word: "anuvjain",
hint: "Alag Aasmaan/ Husn/ Baarishein",
},
{
word: "arianagrande",
hint: "7 Rings/ Pov/ Thank You, Next",
},
{
word: "sabrinacarpenter",
hint: "Nonsense/ Thumbs/ Let Me Move You",
},
{
word: "selenagomez",
hint: "Back To You/ Lose You To Love Me/ It Ain't Me",
},
{
word: "edsheeran",
hint: "Perfect/ Shape Of You/ Photograph",
},
{
word: "shreyaghoshal",
hint: "Tere Bina/ Barso Re/ Sun Raha Hai",
},
{
word: "thelocaltrain",
hint: "Choo Lo/ Aftaab/ Dil Mere",
},
{
word: "shankarmahadevan",
hint: "Mitwa/ Noor E Khuda/ Sajdaa",
},
{
word: "amittrivedi",
hint: "Iktara/ Sham/ Gal Mitthi Mitthi",
},
{
word: "alkayagnik",
hint: "Taal Se Taal/ Tere Naam/ Agar Tum Saath Ho",
},
{
word: "honeysingh",
hint: "Desi Kalakaar/ Love Dose/ Brown Rang",
},
{
word: "darshanrawal",
hint: "Mehrama/ Mahiye Jinna Sohna/ Tera Zikr",
},
{
word: "apdhillon",
hint: "True Stories/ Brown Munde/ Dil Nu",
},
{
word: "badshah",
hint: "Jugnu/ Sanak/ Genda Phool",
},
{
word: "shawnmendes",
hint: "Mercy/ Treat You Better/ Senorita",
},
{
word: "onedirection",
hint: "Story Of My Life/ Night Changes/ Little Things",
},
{
word: "zaynmalik",
hint: "Dusk Till Dawn/ Pillowtalk/ Back To Life",
},
{
word: "tonykakkar",
hint: "Dheeme Dheeme/ Coca Cola/ Zindagi Bata De",
},
{
word: "jenniferlopez",
hint: "On The Floor/ Can't Get Enough/ Dance Again",
},
{
word: "diljitdosanjh",
hint: "Kinni Kinni/ Lover/ Hass Hass",
},
{
word: "oliviarodrigo",
hint: "Deja Vu/ Drivers License/ Bad Idea Right?",
},
{
word: "sidhumoosewala",
hint: "295/ Levels/ Sohne Lagde",
},
{
word: "conangray",
hint: "Heather/ Maniac/ Memories",
},
{
word: "imrankhan",
hint: "Amplifier/ Bewafa/ Satisfya",
},
{
word: "arjunkanungo",
hint: "Aaya Na Tu/ Gallan Tipsiyaan/ Baaki Baatein Peene Baad",
},
{
word: "imaginedragons",
hint: "It's Time/ Thunder/ Bones",
},
{
word: "charlieputh",
hint: "Attention /Left And Right /We Don't Talk Anymore",
},
{
word: "farhanakhtar",
hint: "Rock On!! / Senorita /Pichle Saat Dinon Mein",
},
{
word: "twice",
hint: "Fancy /I Can't Stop Me /Perfect World",
},
{
word: "itzy",
hint: "Dalla Dalla /Wannabe / Loco",
},
{
word: "gidle",
hint: "Queencard/ Hwaa/ Tomboy ",
},
{
word: "mikasingh",
hint: "Mast Kalander/ Subha Hone Na De/ Sawan Mein Lag Gayi Aag",
},
];