-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasyRiddleList.json
More file actions
5002 lines (5002 loc) · 138 KB
/
easyRiddleList.json
File metadata and controls
5002 lines (5002 loc) · 138 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"riddleId" : "_lZewhzrn8J",
"text" : "What kind of dog keeps the best time?",
"answer" : "watchdog"
},
{
"riddleId" : "_Hn5ASrys2X",
"text" : "What time of day, when written in a capital letters, is the same forwards, backwards and upside down?",
"answer" : "noon"
},
{
"riddleId" : "_mAsWoBhjGv",
"text" : "Laughing out",
"answer" : "loud"
},
{
"riddleId" : "_CiIvaj56Xx",
"text" : "A tasty reward given to well behaved dogs and kids",
"answer" : "treat"
},
{
"riddleId" : "_Hgu2MaRGFZ",
"text" : "A caribbean shape that makes ships disappear",
"answer" : "triangle"
},
{
"riddleId" : "_Ff2SylhZXH",
"text" : "It takes two people to do this",
"answer" : "tango"
},
{
"riddleId" : "_ODRkC896KX",
"text" : "What has a face and two hands but no arms or legs?",
"answer" : "clock"
},
{
"riddleId" : "_JkfLpWl5V1",
"text" : "What five-letter word becomes shorter when you add two letters to it?",
"answer" : "short"
},
{
"riddleId" : "_dr5ewmzM4Q",
"text" : "What has a neck but no head?",
"answer" : "bottle"
},
{
"riddleId" : "_IK2DsHyMZP",
"text" : "What type of cheese is made backwards?",
"answer" : "edam"
},
{
"riddleId" : "_PymXS973cK",
"text" : "What gets wetter as it dries?",
"answer" : "towel"
},
{
"riddleId" : "_PAue6kx34m",
"text" : "What has to be broken before you can eat it?",
"answer" : "egg"
},
{
"riddleId" : "_rvf5smZ3E4",
"text" : "What begins with t, ends with t and has t in it?",
"answer" : "teapot"
},
{
"riddleId" : "_hEfVaUqjJv",
"text" : "Teddy bears are never hungry because they are always what?",
"answer" : "stuffed"
},
{
"riddleId" : "_V5c4aWJveH",
"text" : "What belongs to you but others use it more than you do?",
"answer" : "name"
},
{
"riddleId" : "_JRFIArTib2",
"text" : "The more you take aways, the larger it becomes? what is it?",
"answer" : "hole"
},
{
"riddleId" : "_mCJEgMyt1x",
"text" : "What is full of holes, but can still hold a lot of water?",
"answer" : "sponge"
},
{
"riddleId" : "_KuPyJmj0z8",
"text" : "Where do fish keep their money?",
"answer" : "riverbank"
},
{
"riddleId" : "_DUS7WOQotf",
"text" : "What do you get when you cross an automobile with a household animal?",
"answer" : "carpet"
},
{
"riddleId" : "_ZcFywLvSpW",
"text" : "What bone has a sense of humor?",
"answer" : "humorous"
},
{
"riddleId" : "_Eaui5Xm3B6",
"text" : "The more of them you take, the more you leave behind what are they?",
"answer" : "footsteps"
},
{
"riddleId" : "_KFktE84QRx",
"text" : "What is that you will break everytime you name it?",
"answer" : "silence"
},
{
"riddleId" : "_mgsPrJfEz9",
"text" : "What has four fingers and one thumb, but is not alive?",
"answer" : "glove"
},
{
"riddleId" : "_BXQZ8nV4eG",
"text" : "What flies without wings?",
"answer" : "time"
},
{
"riddleId" : "_BealUbMVWd",
"text" : "What turns everything around, but does not move?",
"answer" : "mirror"
},
{
"riddleId" : "_xGJNfMQcrP",
"text" : "What is half of two plus two?",
"answer" : "three"
},
{
"riddleId" : "_jXz4V2E9JQ",
"text" : "What word looks the same upside down and backwards?",
"answer" : "swims"
},
{
"riddleId" : "_vKLPOd4Z2y",
"text" : "What kind of fish chases a mouse?",
"answer" : "catfish"
},
{
"riddleId" : "_5s2tKInjhe",
"text" : "What goes up and down without moving?",
"answer" : "stairs"
},
{
"riddleId" : "_PWb2ZcGgqo",
"text" : "What sits in a corner while traveling all around the world?",
"answer" : "stamp"
},
{
"riddleId" : "_dbgrI0XVqm",
"text" : "I have a face, two arms, and two hands, yet i can not move i count to twelve, yet i can not speak i can still tell you something everyday",
"answer" : "clock"
},
{
"riddleId" : "_5AvoORKHPr",
"text" : "You enter a dark room you have only one match there is an oil lamp, a furnace, and a stove in the room which would you light first?",
"answer" : "match"
},
{
"riddleId" : "_x2ESweVjv9",
"text" : "What is round on both ends and hi in the middle?",
"answer" : "ohio"
},
{
"riddleId" : "_nGuRECA4aN",
"text" : "What do you call a dog that sweats so much?",
"answer" : "hotdog"
},
{
"riddleId" : "_NUG4JTSMRm",
"text" : "What do you call a rabbit with fleas?",
"answer" : "bugsbunny"
},
{
"riddleId" : "_zSrUlk5Z8e",
"text" : "What rains at the north pole?",
"answer" : "reindeer"
},
{
"riddleId" : "_U6QwhYgZuC",
"text" : "What kind of apple has a short temper?",
"answer" : "crabapple"
},
{
"riddleId" : "_VY8k6Ci4ZU",
"text" : "What do you do with a dead chemist?",
"answer" : "barium"
},
{
"riddleId" : "_A2SfTVCwWo",
"text" : "What calls for help, when written in capital letters, is the same forwards, backwards and upside down?",
"answer" : "sos"
},
{
"riddleId" : "_BGLwgOtxi9",
"text" : "What body part is pronounced as one letter but written with three, only two different letters are used?",
"answer" : "eye"
},
{
"riddleId" : "_ADMuGj4WxS",
"text" : "What is 2+2? what is 4+4? what is 8+8? what is 16+16? pick a number between 12 and 5",
"answer" : "seven"
},
{
"riddleId" : "_UwxcrbinJV",
"text" : "What keeps things green and keeps kids occupied in the summertime?",
"answer" : "sprinkler"
},
{
"riddleId" : "_naHbp9rX6f",
"text" : "Old mcdonald had this",
"answer" : "farm"
},
{
"riddleId" : "_OvxbKRhs6i",
"text" : "Poorly behaved children often find themselves sitting in these",
"answer" : "corner"
},
{
"riddleId" : "_zwW3ZPapCf",
"text" : "Brings you may flowers",
"answer" : "showers"
},
{
"riddleId" : "_lS8LWoRsF0",
"text" : "A shower that lights up the sky",
"answer" : "meteor"
},
{
"riddleId" : "_ryk6sR1xcM",
"text" : "Longer than a decade and shorter than a milennium",
"answer" : "century"
},
{
"riddleId" : "_RgCys25VAY",
"text" : "Rolling on floor",
"answer" : "laughing"
},
{
"riddleId" : "_EM64tySUYg",
"text" : "Rabbits do this to carrots and jason mraz does this to ears",
"answer" : "nibble"
},
{
"riddleId" : "_uYAZ3cBKP1",
"text" : "These minerals are vital to your health",
"answer" : "vitamin"
},
{
"riddleId" : "_EqKo6W9k0h",
"text" : "Commits friendly home invasions one night a year",
"answer" : "santaclaus"
},
{
"riddleId" : "_Uc3g6CZqN4",
"text" : "Everyone claims to know a way to stop these involuntary contractions but none of them work",
"answer" : "hiccup"
},
{
"riddleId" : "_wPuGNa2xvL",
"text" : "Has 4 lucky leaves",
"answer" : "shamrock"
},
{
"riddleId" : "_xlbRGtPJAH",
"text" : "One of the best things you can hope for after whacking a ball with a stick",
"answer" : "homerun"
},
{
"riddleId" : "_od8LQgmFRs",
"text" : "They put the heat in pop tarts",
"answer" : "toaster"
},
{
"riddleId" : "_6d1aVAIwcl",
"text" : "What has a ring, but no finger?",
"answer" : "telephone"
},
{
"riddleId" : "_QxPfbISz2J",
"text" : "What is higher without the head, than with it?",
"answer" : "pillow"
},
{
"riddleId" : "_naJ8tPT6RG",
"text" : "What is harder to catch the faster you run?",
"answer" : "breath"
},
{
"riddleId" : "_AMrtOjnmqp",
"text" : "What invention lets you look right through a wall?",
"answer" : "window"
},
{
"riddleId" : "_h9JErMuCm8",
"text" : "What is that you will break everytime you name it?",
"answer" : "silence"
},
{
"riddleId" : "_9ce0gwkrz2",
"text" : "What is an aliens favourite sport?",
"answer" : "spaceball"
},
{
"riddleId" : "_IGh4uUXjJr",
"text" : "What is the saddest fruit?",
"answer" : "blueberry"
},
{
"riddleId" : "_wF1JEgYaLN",
"text" : "What is black and white and read all over?",
"answer" : "newspaper"
},
{
"riddleId" : "_eHGo5yzBEF",
"text" : "What is easy to get into, and hard to get out of?",
"answer" : "trouble"
},
{
"riddleId" : "_leHWRiZdOg",
"text" : "What is there more of the less you see?",
"answer" : "darkness"
},
{
"riddleId" : "_4tsuhIBoLq",
"text" : "What is as big as you are and yet does not weigh anything?",
"answer" : "shadow"
},
{
"riddleId" : "_quS39gDy2Y",
"text" : "What types of words are these: madam, civic, eye, level?",
"answer" : "palindrome"
},
{
"riddleId" : "_oa5kgNqrLb",
"text" : "The person who makes it has no need for it the person who purchases it does not use it the person who does use it does not know he or she is what is it?",
"answer" : "coffin"
},
{
"riddleId" : "_qWKBeQvRS5",
"text" : "It is an insect, and the first part of its name is the name of another insect what is it?",
"answer" : "beetle"
},
{
"riddleId" : "_AZxVm2LkFh",
"text" : "What english word retains the same pronunciation, even after you take away four of its five letters?",
"answer" : "queue"
},
{
"riddleId" : "_f4NzlTO3RA",
"text" : "What becomes white when it is dirty?",
"answer" : "blackboard"
},
{
"riddleId" : "_tNAexsMES3",
"text" : "What word of five letters has only one left when two letters are removed?",
"answer" : "stone"
},
{
"riddleId" : "_WJx0KcfTL5",
"text" : "How many 9′s are there between 1 and 100?",
"answer" : "twenty"
},
{
"riddleId" : "_xVJcaL6p5Z",
"text" : "Which vehicle is spelled the same forwards and backwards?",
"answer" : "racecar"
},
{
"riddleId" : "_7lHsBM0F3C",
"text" : "I am lighter than air but a million men cannot lift me up, what am i?",
"answer" : "bubble"
},
{
"riddleId" : "_ekztDVXcmT",
"text" : "Five men were eating apples, a finished before b, but behind c d finished before e, but behind b what was the finishing order?",
"answer" : "cabde"
},
{
"riddleId" : "_tYqKn4NLoA",
"text" : "It is everything to someone, and nothing to everyone else what is it?",
"answer" : "mind"
},
{
"riddleId" : "_VCwhGmPcQ6",
"text" : "Forward i am heavy, backwards i am not what am i?",
"answer" : "ton"
},
{
"riddleId" : "_wdpW65mXL3",
"text" : "What object has keys that open no locks, space but no room, and you can enter but not go in?",
"answer" : "keyboard"
},
{
"riddleId" : "_e3TVShsRPg",
"text" : "First you see me in the grass dressed in yellow gay; next i am in dainty white, then i fly away what am i?",
"answer" : "dandelion"
},
{
"riddleId" : "_ZdjiB5FvEb",
"text" : "Hands she has but does not hold, teeth she has but does not bite, feet she has but they are cold, eyes she has but without sight who is she?",
"answer" : "doll"
},
{
"riddleId" : "_YiyZEaH3se",
"text" : "What lies in bed, and stands in bed, first white then red the plumber it gets, the better the old woman likes it?",
"answer" : "strawberry"
},
{
"riddleId" : "_hE7clCKD2S",
"text" : "What can bring back the dead; make us cry, make us laugh, make us young; born in an instant yet lasts a life time?",
"answer" : "memories"
},
{
"riddleId" : "_27luvRtFiz",
"text" : "An openended barrel, i am shaped like a hive i am filled with the flesh, and the flesh is alive! what am i?",
"answer" : "thimble"
},
{
"riddleId" : "_nG9MkBftFo",
"text" : "Violet, indigo, blue and green, yellow, orange and red; these are the colors you have seen after the storm has fled what am i?",
"answer" : "rainbow"
},
{
"riddleId" : "_yOhKlnqsW9",
"text" : "I was carried into a dark room, and set on fire i wept, and then my head was cut off what am i?",
"answer" : "candle"
},
{
"riddleId" : "_oCDf5mas8T",
"text" : "What does no man want, yet no man want to lose?",
"answer" : "job"
},
{
"riddleId" : "_atIDlRcb7x",
"text" : "This old one runs forever, but never moves at all he has not lungs nor throat, but still a mighty roaring call what is it?",
"answer" : "waterfall"
},
{
"riddleId" : "_Et37du1KXL",
"text" : "Mountains will crumble and temples will fall, and no man can survive its endless call what is it?",
"answer" : "time"
},
{
"riddleId" : "_KiT76t13je",
"text" : "What can go up a chimney down, but cannot go down a chimney up?",
"answer" : "umbrella"
},
{
"riddleId" : "_9VYmng6xiA",
"text" : "I pass before the sun, yet make no shadow what am i?",
"answer" : "wind"
},
{
"riddleId" : "_2G8SQygZ7F",
"text" : "When they are caught, they are thrown away when they escape, you itch all day what are they?",
"answer" : "fleas"
},
{
"riddleId" : "_Dt2ja9fvGQ",
"text" : "You can spin, wheel and twist, but this thing can turn without moving what is it?",
"answer" : "milk"
},
{
"riddleId" : "_DWX0O2Tdwc",
"text" : "Never resting, never still moving silently from hill to hill it does not walk, run or trot all is cool where it is not",
"answer" : "sunshine"
},
{
"riddleId" : "_p3Ku7x1Fef",
"text" : "Different lights do make me strange, thus into different sizes i will change",
"answer" : "pupil"
},
{
"riddleId" : "_TG94btHRSv",
"text" : "When asked how old she was, suzie replied, \"in two years i will be twice as old as i was five years ago\" how old is she?",
"answer" : "twelve"
},
{
"riddleId" : "_3vhzK5N1IL",
"text" : "I have two arms, but fingers none i have two feet, but cannot run i carry well, but i have found i carry best with my feet off the ground what am i?",
"answer" : "wheelbarrow"
},
{
"riddleId" : "_8Gwzj219xs",
"text" : "What has a tongue, cannot walk, but gets around a lot?",
"answer" : "shoe"
},
{
"riddleId" : "_O3BK8ShLZW",
"text" : "What has feet and legs, and nothing else?",
"answer" : "stockings"
},
{
"riddleId" : "_m8vSFukGLX",
"text" : "What has no beginning, end, or middle?",
"answer" : "doughnut"
},
{
"riddleId" : "_0PQyO82AcF",
"text" : "You hear it speak, for it has a hard tongue but it cannot breathe, for it has not a lung what is it?",
"answer" : "bell"
},
{
"riddleId" : "_wjv3LMfPZr",
"text" : "What is that which goes with a car, comes with a car, is of no use to a car, and yet the car cannot go without it?",
"answer" : "noise"
},
{
"riddleId" : "_woTK8cZBtm",
"text" : "You are in a room with 3 monkeys one monkey has a banana, one has a stick, and one has nothing who is the smartest primate?",
"answer" : "you"
},
{
"riddleId" : "_lLrBdAxUYP",
"text" : "If you were standing directly on antarcticas south pole facing north, which direction would you travel if you took one step backward?",
"answer" : "north"
},
{
"riddleId" : "_wrjKOp2CGI",
"text" : "When the day after tomorrow is yesterday, today will be as far from wednesday as today was from wednesday when the day before yesterday was tomorrow what is the day after this day?",
"answer" : "thursday"
},
{
"riddleId" : "_z5aQ9i6XTl",
"text" : "Who spends the day at the window, goes to the table for meals and hides at night?",
"answer" : "fly"
},
{
"riddleId" : "_Nd1MmWIwVQ",
"text" : "In a tunnel of darksness lies a beast of iron it can only attack when pulled back what is it?",
"answer" : "bullet"
},
{
"riddleId" : "_l2fnc0JX94",
"text" : "What is easy to get into, but hard to get out of?",
"answer" : "trouble"
},
{
"riddleId" : "_rZYTRPk0zV",
"text" : "Lives without a body, hears without ears, speaks without a mouth, to which the air alone gives birth what is it?",
"answer" : "echo"
},
{
"riddleId" : "_h247PNudUo",
"text" : "Three lives have i gentle enough to soothe the skin light enough to caress the sky hard enough to crack rocks what am i?",
"answer" : "water"
},
{
"riddleId" : "_3pe7bmF8Wa",
"text" : "I go in hard i come out soft you blow me hard what am i?",
"answer" : "gum"
},
{
"riddleId" : "_D48FP3TtSI",
"text" : "What is it that no man ever yet did see, which never was, but always is to be?",
"answer" : "tomorrow"
},
{
"riddleId" : "_9tK8T2pA7B",
"text" : "I am in the sky but also in the ground when you study me, no matter how long, i will always end with an f i may be in your yard but not in your house what am i?",
"answer" : "leaf"
},
{
"riddleId" : "_NZiWI7GEgp",
"text" : "What i am visible to you, you cannot see me, but when i am invisible, you long to see me i am plenty with someone patient, but all the more scarce with a hasty one i am greater than all, but still in the control of those who value my existence who am i?",
"answer" : "time"
},
{
"riddleId" : "_YjENkKdVbx",
"text" : "Mountains will crumble and temples will fall, and no man can survive its endless call what is it?",
"answer" : "time"
},
{
"riddleId" : "_NBIol5aumW",
"text" : "What is black when you buy it, red when you use it, and gray when you throw it away?",
"answer" : "charcoal"
},
{
"riddleId" : "_bZ6j5FXU0e",
"text" : "Before mt everest was discovered as the highest mountain in the world, which mountain was the highest?",
"answer" : "mteverest"
},
{
"riddleId" : "_vO9bqLCVES",
"text" : "Cute hares that hop and deliver eggs at easter are called by this nickname",
"answer" : "bunny"
},
{
"riddleId" : "_nrGcECNVHF",
"text" : "This monkey food makes people slip and fall in cartoons",
"answer" : "bananas"
},
{
"riddleId" : "_ybVhJ0GPRz",
"text" : "Owned by old mcdonald",
"answer" : "farm"
},
{
"riddleId" : "_l5MDkIScd8",
"text" : "Poorly behaved children often find themselves sitting in these",
"answer" : "corners"
},
{
"riddleId" : "_NWEcJb7SFp",
"text" : "It keeps things green and keeps the kids occupied in the summertime",
"answer" : "sprinkler"
},
{
"riddleId" : "_tAGpJS5Zuo",
"text" : "If a dog were filling out a resume, he might list his mastery of this game under \"skills\"",
"answer" : "fetch"
},
{
"riddleId" : "_EJSt81kV6Q",
"text" : "Sleep-inducing melody",
"answer" : "lullaby"
},
{
"riddleId" : "_HgdNJWnc3q",
"text" : "He crushed on wendy darling",
"answer" : "peterpan"
},
{
"riddleId" : "_mw7oDCOJtU",
"text" : "This guy crossed a road and everyone wants an explanation",
"answer" : "chicken"
},
{
"riddleId" : "_pERLcu9Tnf",
"text" : "A twiggy home",
"answer" : "nest"
},
{
"riddleId" : "_jiov8IBn1x",
"text" : "Very helpful if you intend to go gently down a stream",
"answer" : "rowboat"
},
{
"riddleId" : "_NmEiRtr72C",
"text" : "A storage facility for criminals and fire-breathing reptiles",
"answer" : "dungeon"
},
{
"riddleId" : "_G458gpBQjz",
"text" : "Casper was a friendly one and demi moore made a clay pot with one",
"answer" : "ghost"
},
{
"riddleId" : "_vfjshIcD2T",
"text" : "Where everyone wants to run home and stealing is encouraged",
"answer" : "baseball"
},
{
"riddleId" : "_fVs0cz8kOK",
"text" : "Brings you may flowers",
"answer" : "showers"
},
{
"riddleId" : "_Qhneb5A8FJ",
"text" : "Special abilities and brightly colored underwear are all you need to be one of these",
"answer" : "superhero"
},
{
"riddleId" : "_7XKF2MtDca",
"text" : "Consuming food would be pretty tough without these chompers",
"answer" : "teeth"
},
{
"riddleId" : "_zWD89akerK",
"text" : "Often sold by child entrepreneurs in the summer",
"answer" : "lemonade"
},
{
"riddleId" : "_dZY1nmLPG0",
"text" : "A shower that lights up the sky",
"answer" : "meteor"
},
{
"riddleId" : "_QHMRkotOpl",
"text" : "The itsy bitsy teeny weeny yellow polka dot variety is quite popular",
"answer" : "bikini"
},
{
"riddleId" : "_cKG63zg2F1",
"text" : "Surname of the pilot of the millennium falcon",
"answer" : "solo"
},
{
"riddleId" : "_gBVrY8sOlN",
"text" : "Where jewelry pierces your head",
"answer" : "lobe"
},
{
"riddleId" : "_WtcQjvXIu1",
"text" : "These animals hang out in the mist",
"answer" : "gorilla"
},
{
"riddleId" : "_sbvhZ62lFi",
"text" : "Rueben and monte cristo are two delicious varieties of this",
"answer" : "sandwich"
},
{
"riddleId" : "_1vjWa0PyGT",
"text" : "Air that is expelled orally",
"answer" : "burp"
},
{
"riddleId" : "_NYeVuFkEx9",
"text" : "Two year-old children who throw tantrums get this nickname so did the tsar \"ivan\"",
"answer" : "terrible"
},
{
"riddleId" : "_y6Z4PWlRH9",
"text" : "The signature stroll of ducks and penguins",
"answer" : "waddle"
},
{
"riddleId" : "_NLpd2QPIDV",
"text" : "The state of holding a person in your person",
"answer" : "pregnant"
},
{
"riddleId" : "_M7aEOBqtIb",
"text" : "This is needed both for courage and hardcover books",
"answer" : "spine"
},
{
"riddleId" : "_iUXdyxCMzF",
"text" : "Between daylight and darkness when sparkling blood suckers like to come out",
"answer" : "twilight"
},
{
"riddleId" : "_K8qTEecrFC",
"text" : "Responsible for the toupee industry",
"answer" : "baldspot"
},
{
"riddleId" : "_vuwPHc3MLE",
"text" : "Longer than a decade and shorter than a millennium",
"answer" : "century"
},
{
"riddleId" : "_W0lMfr2XaG",
"text" : "Fuels backyard get-togethers",
"answer" : "charcoal"
},
{
"riddleId" : "_sT8SaAQLBU",
"text" : "Only you can prevent forest fires",
"answer" : "smokey"
},
{
"riddleId" : "_FohD8mwntp",
"text" : "A defendant will go free if a reasonable amount of this exists",
"answer" : "doubt"
},
{
"riddleId" : "_5qDF4mkKai",
"text" : "Godzilla calls this place home",
"answer" : "japan"
},
{
"riddleId" : "_xlBcGzXyJh",
"text" : "This would be a good place to find can-can girls and drunk cowboys",
"answer" : "saloon"
},
{
"riddleId" : "_kzWf0Cq6vQ",
"text" : "He prefers to travel on vines and pal around with gorillas",
"answer" : "tarzan"
},
{
"riddleId" : "_yzlUevqcxT",
"text" : "This company makes billions of dollars selling windows",
"answer" : "microsoft"
},
{
"riddleId" : "_AtvUzkdPQj",
"text" : "A caribbean shape that makes ships disappear",
"answer" : "triangle"
},
{
"riddleId" : "_1pIzC3raR4",
"text" : "Known for their natural tuxedos and marching",
"answer" : "penguins"
},
{
"riddleId" : "_Mc0VpfdIgB",
"text" : "Before google, we actually had to physically look things up in this building full of knowledge",
"answer" : "library"
},
{
"riddleId" : "_5oAK28prq7",
"text" : "They transfer oxygen from the atmosphere into blood",
"answer" : "lungs"
},
{
"riddleId" : "_igtJmqS6jE",
"text" : "Dark, feathery, and popular in baltimore",
"answer" : "ravens"
},
{
"riddleId" : "_maUZheQbvt",
"text" : "Use this machine if you really want to see inside somone",
"answer" : "xray"
},
{
"riddleId" : "_5SXsw4m23L",
"text" : "A morbidly-named body of water",
"answer" : "deadsea"
},
{
"riddleId" : "_X0nYtMBQmk",
"text" : "Angels and pilots earn these",
"answer" : "wing"
},
{
"riddleId" : "_0DmJiaXMGS",
"text" : "Boxes marked as this should not be abused",
"answer" : "fragile"
},
{
"riddleId" : "_JpX0GgMa7H",
"text" : "One of the few activities that involves bowling pins flying through the air",
"answer" : "juggling"
},
{
"riddleId" : "_rasS19RFyn",
"text" : "Flavors your food and divides the year up",
"answer" : "season"
},
{
"riddleId" : "_7ShZso2DFl",
"text" : "A candy whose name is reminiscent of a small laugh",
"answer" : "snickers"
},
{
"riddleId" : "_jG5cbHQVYX",
"text" : "This creature travels in a gaggle",
"answer" : "goose"
},
{
"riddleId" : "_0ePs8Wz7XR",
"text" : "The l in lol",
"answer" : "laugh"
},
{
"riddleId" : "_1bx7cHZ9I5",
"text" : "So delicious they required an international house to contain them",
"answer" : "pancakes"
},
{
"riddleId" : "_Ga6MLDbcXn",
"text" : "Can be heard in a court or used to carry briefs",
"answer" : "case"
},
{
"riddleId" : "_mFzosR8SCO",
"text" : "Dorothy had a severe disagreement with a woman of this magical persuasion",
"answer" : "witch"
},
{
"riddleId" : "_5kjzR8ZOsX",
"text" : "A goofy creature that produces fine wool and like to spit at you",
"answer" : "llama"
},
{
"riddleId" : "_kHIUYmprbo",
"text" : "A tasty reward given to well behaved dogs and kids",
"answer" : "treat"
},
{
"riddleId" : "_5mE2sjfunz",
"text" : "Where it is encouraged to slam into other vehicles",
"answer" : "bumpercars"
},
{
"riddleId" : "_gHEsnIf91S",
"text" : "Rabbits do this to carrots and jason mraz does this to ears",
"answer" : "nibble"
},
{
"riddleId" : "_cWC2LT9Khu",
"text" : "Has a strong attraction to belly buttons",
"answer" : "lint"
},
{
"riddleId" : "_C8x7gsTnmU",
"text" : "They make a living harassing wealthy, beautiful people",
"answer" : "paparazzi"
},
{
"riddleId" : "_Sp9wGCQvnH",
"text" : "These minerals are vital to your health",
"answer" : "vitamin"
},
{
"riddleId" : "_hrudvC6Tyf",
"text" : "They put the heat in pop tarts",
"answer" : "toaster"
},
{
"riddleId" : "_jxLErNAq04",
"text" : "These help engines spin and trousers stay up",
"answer" : "belt"
},
{
"riddleId" : "_YSfciWNV3J",
"text" : "Greedy grumpy holiday hater",
"answer" : "scrooge"
},
{
"riddleId" : "_desPE3ufGF",
"text" : "Commits friendly home invasions one night a year",
"answer" : "santaclaus"
},
{
"riddleId" : "_MsuCOH9bUj",
"text" : "Everyone claims to know a way to stop these involuntary contractions none of them work",
"answer" : "hiccup"
},
{
"riddleId" : "_MN0Y7kXPAQ",
"text" : "According to the ads, this is the favorite beverage of friendly polar bears",
"answer" : "coke"
},
{
"riddleId" : "_esvnah8rZN",
"text" : "Each of these ends in a kettle full of precious metal and the double variety is quite awesome",
"answer" : "rainbow"
},
{
"riddleId" : "_2HYip7SqMG",
"text" : "A sport with love and service played by singles and pairs",
"answer" : "tennis"
},
{
"riddleId" : "_PnQi1sE7CO",
"text" : "These begin your sentences and are home to your leaders",
"answer" : "capital"
},
{
"riddleId" : "_IdqeloEmus",
"text" : "Has 4 lucky leaves",
"answer" : "shamrock"
},
{
"riddleId" : "_g4RjdZ6p3r",
"text" : "A beverage named after a stick also combats the stains of another beverage",
"answer" : "clubsoda"
},
{
"riddleId" : "_0j4Ukh3Zyp",
"text" : "Flavors range from strawberry to toe",
"answer" : "jam"
},
{
"riddleId" : "_JAVko1lMTL",
"text" : "Use this if leaping off a bridge for fun",
"answer" : "bungee"
},
{
"riddleId" : "_HhjTlxQCmR",
"text" : "Before crust hardens",
"answer" : "dough"
},
{
"riddleId" : "_MbovWAJOCg",
"text" : "Raise your right appendage high above your head turn your head to the right and you will smell this",
"answer" : "armpit"
},
{
"riddleId" : "_hIC7YNRQyb",
"text" : "Teenage girls are pros at causing this",
"answer" : "drama"
},
{
"riddleId" : "_PmOEYtyvXH",
"text" : "It has a face and two hands but no arms or legs",
"answer" : "clock"
},
{
"riddleId" : "_3Iytcej8ql",
"text" : "One of the best things you can hope for after whacking a ball with a stick",
"answer" : "homerun"
},
{
"riddleId" : "_8vXT9bARCI",
"text" : "Water dwelling mammal known for its work ethic",
"answer" : "beaver"
},
{
"riddleId" : "_BetYMCvpRK",
"text" : "A beautiful succession of sounds",
"answer" : "music"