jokes.json
53.6 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
[
{
"id": 1,
"type": "general",
"setup": "What did the fish say when it hit the wall?",
"punchline": "Dam."
},
{
"id": 2,
"type": "general",
"setup": "How do you make a tissue dance?",
"punchline": "You put a little boogie on it."
},
{
"id": 3,
"type": "general",
"setup": "What's Forrest Gump's password?",
"punchline": "1Forrest1"
},
{
"id": 4,
"type": "general",
"setup": "What do you call a belt made out of watches?",
"punchline": "A waist of time."
},
{
"id": 5,
"type": "general",
"setup": "Why can't bicycles stand on their own?",
"punchline": "They are two tired"
},
{
"id": 6,
"type": "general",
"setup": "How does a train eat?",
"punchline": "It goes chew, chew"
},
{
"id": 7,
"type": "general",
"setup": "What do you call a singing Laptop",
"punchline": "A Dell"
},
{
"id": 8,
"type": "general",
"setup": "How many lips does a flower have?",
"punchline": "Tulips"
},
{
"id": 9,
"type": "general",
"setup": "How do you organize an outer space party?",
"punchline": "You planet"
},
{
"id": 10,
"type": "general",
"setup": "What kind of shoes does a thief wear?",
"punchline": "Sneakers"
},
{
"id": 11,
"type": "general",
"setup": "What's the best time to go to the dentist?",
"punchline": "Tooth hurty."
},
{
"id": 12,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n A broken pencil. \n A broken pencil who?",
"punchline": "Never mind. It's pointless."
},
{
"id": 13,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Cows go. \n Cows go who?",
"punchline": "No, cows go moo."
},
{
"id": 14,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Little old lady. \n Little old lady who?",
"punchline": "I didn't know you could yodel!"
},
{
"id": 15,
"type": "programming",
"setup": "What's the best thing about a Boolean?",
"punchline": "Even if you're wrong, you're only off by a bit."
},
{
"id": 16,
"type": "programming",
"setup": "What's the object-oriented way to become wealthy?",
"punchline": "Inheritance"
},
{
"id": 17,
"type": "programming",
"setup": "Where do programmers like to hangout?",
"punchline": "The Foo Bar."
},
{
"id": 18,
"type": "programming",
"setup": "Why did the programmer quit his job?",
"punchline": "Because he didn't get arrays."
},
{
"id": 19,
"type": "general",
"setup": "Did you hear about the two silk worms in a race?",
"punchline": "It ended in a tie."
},
{
"id": 20,
"type": "general",
"setup": "What do you call a laughing motorcycle?",
"punchline": "A Yamahahahaha."
},
{
"id": 21,
"type": "general",
"setup": "A termite walks into a bar and says...",
"punchline": "'Where is the bar tended?'"
},
{
"id": 22,
"type": "general",
"setup": "What does C.S. Lewis keep at the back of his wardrobe?",
"punchline": "Narnia business!"
},
{
"id": 23,
"type": "programming",
"setup": "Why do programmers always mix up Halloween and Christmas?",
"punchline": "Because Oct 31 == Dec 25"
},
{
"id": 24,
"type": "programming",
"setup": "A SQL query walks into a bar, walks up to two tables and asks...",
"punchline": "'Can I join you?'"
},
{
"id": 25,
"type": "programming",
"setup": "How many programmers does it take to change a lightbulb?",
"punchline": "None that's a hardware problem"
},
{
"id": 26,
"type": "programming",
"setup": "If you put a million monkeys at a million keyboards, one of them will eventually write a Java program",
"punchline": "the rest of them will write Perl"
},
{
"id": 27,
"type": "programming",
"setup": "['hip', 'hip']",
"punchline": "(hip hip array)"
},
{
"id": 28,
"type": "programming",
"setup": "To understand what recursion is...",
"punchline": "You must first understand what recursion is"
},
{
"id": 29,
"type": "programming",
"setup": "There are 10 types of people in this world...",
"punchline": "Those who understand binary and those who don't"
},
{
"id": 30,
"type": "general",
"setup": "What did the duck say when he bought lipstick?",
"punchline": "Put it on my bill"
},
{
"id": 31,
"type": "general",
"setup": "What happens to a frog's car when it breaks down?",
"punchline": "It gets toad away"
},
{
"id": 32,
"type": "general",
"setup": "did you know the first French fries weren't cooked in France?",
"punchline": "they were cooked in Greece"
},
{
"id": 33,
"type": "programming",
"setup": "Which song would an exception sing?",
"punchline": "Can't catch me - Avicii"
},
{
"id": 34,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Opportunity.",
"punchline": "That is impossible. Opportunity doesn’t come knocking twice!"
},
{
"id": 35,
"type": "programming",
"setup": "Why do Java programmers wear glasses?",
"punchline": "Because they don't C#"
},
{
"id": 36,
"type": "general",
"setup": "Why did the mushroom get invited to the party?",
"punchline": "Because he was a fungi."
},
{
"id": 37,
"type": "general",
"setup": "Why did the mushroom get invited to the party?",
"punchline": "Because he was a fungi."
},
{
"id": 38,
"type": "general",
"setup": "I'm reading a book about anti-gravity...",
"punchline": "It's impossible to put down"
},
{
"id": 39,
"type": "general",
"setup": "If you're American when you go into the bathroom, and American when you come out, what are you when you're in there?",
"punchline": "European"
},
{
"id": 40,
"type": "general",
"setup": "Want to hear a joke about a piece of paper?",
"punchline": "Never mind...it's tearable"
},
{
"id": 41,
"type": "general",
"setup": "I just watched a documentary about beavers.",
"punchline": "It was the best dam show I ever saw"
},
{
"id": 42,
"type": "general",
"setup": "If you see a robbery at an Apple Store...",
"punchline": "Does that make you an iWitness?"
},
{
"id": 43,
"type": "general",
"setup": "A ham sandwhich walks into a bar and orders a beer. The bartender says...",
"punchline": "I'm sorry, we don't serve food here"
},
{
"id": 44,
"type": "general",
"setup": "Why did the Clydesdale give the pony a glass of water?",
"punchline": "Because he was a little horse"
},
{
"id": 45,
"type": "general",
"setup": "If you boil a clown...",
"punchline": "Do you get a laughing stock?"
},
{
"id": 46,
"type": "general",
"setup": "Finally realized why my plant sits around doing nothing all day...",
"punchline": "He loves his pot."
},
{
"id": 47,
"type": "general",
"setup": "Don't look at the eclipse through a colander.",
"punchline": "You'll strain your eyes."
},
{
"id": 48,
"type": "general",
"setup": "I bought some shoes from a drug dealer.",
"punchline": "I don't know what he laced them with, but I was tripping all day!"
},
{
"id": 49,
"type": "general",
"setup": "Why do chicken coops only have two doors?",
"punchline": "Because if they had four, they would be chicken sedans"
},
{
"id": 50,
"type": "general",
"setup": "What do you call a factory that sells passable products?",
"punchline": "A satisfactory"
},
{
"id": 51,
"type": "general",
"setup": "When a dad drives past a graveyard: Did you know that's a popular cemetery?",
"punchline": "Yep, people are just dying to get in there"
},
{
"id": 52,
"type": "general",
"setup": "Why did the invisible man turn down the job offer?",
"punchline": "He couldn't see himself doing it"
},
{
"id": 53,
"type": "general",
"setup": "How do you make holy water?",
"punchline": "You boil the hell out of it"
},
{
"id": 54,
"type": "general",
"setup": "I had a dream that I was a muffler last night.",
"punchline": "I woke up exhausted!"
},
{
"id": 55,
"type": "general",
"setup": "Why is peter pan always flying?",
"punchline": "Because he neverlands"
},
{
"id": 56,
"type": "programming",
"setup": "How do you check if a webpage is HTML5?",
"punchline": "Try it out on Internet Explorer"
},
{
"id": 57,
"type": "general",
"setup": "What do you call a cow with no legs?",
"punchline": "Ground beef!"
},
{
"id": 58,
"type": "general",
"setup": "I dropped a pear in my car this morning.",
"punchline": "You should drop another one, then you would have a pair."
},
{
"id": 59,
"type": "general",
"setup": "Lady: How do I spread love in this cruel world?",
"punchline": "Random Dude: [...💘]"
},
{
"id": 60,
"type": "programming",
"setup": "A user interface is like a joke.",
"punchline": "If you have to explain it then it is not that good."
},
{
"id": 61,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Hatch. \n Hatch who?",
"punchline": "Bless you!"
},
{
"id": 62,
"type": "general",
"setup": "What do you call sad coffee?",
"punchline": "Despresso."
},
{
"id": 63,
"type": "general",
"setup": "Why did the butcher work extra hours at the shop?",
"punchline": "To make ends meat."
},
{
"id": 64,
"type": "general",
"setup": "Did you hear about the hungry clock?",
"punchline": "It went back four seconds."
},
{
"id": 65,
"type": "general",
"setup": "Well...",
"punchline": "That’s a deep subject."
},
{
"id": 66,
"type": "general",
"setup": "Did You Hear The Story About The Cheese That Saved The World?",
"punchline": "It was legend dairy."
},
{
"id": 67,
"type": "general",
"setup": "Did You Watch The New Comic Book Movie?",
"punchline": "It was very graphic!"
},
{
"id": 68,
"type": "general",
"setup": "I Started A New Business Making Yachts In My Attic This Year...",
"punchline": "The sails are going through the roof."
},
{
"id": 69,
"type": "general",
"setup": "I Got Hit In the Head By A Soda Can, But It Didn't Hurt That Much...",
"punchline": "It was a soft drink."
},
{
"id": 70,
"type": "general",
"setup": "I Can't Tell If I Like This Blender...",
"punchline": "It keeps giving me mixed results."
},
{
"id": 71,
"type": "general",
"setup": "WI Couldn't Get A Reservation At The Library...",
"punchline": "They were fully booked."
},
{
"id": 72,
"type": "programming",
"setup": "I was gonna tell you a joke about UDP...",
"punchline": "...but you might not get it."
},
{
"id": 73,
"type": "programming",
"setup": "The punchline often arrives before the set-up.",
"punchline": "Do you know the problem with UDP jokes?"
},
{
"id": 74,
"type": "programming",
"setup": "Why do C# and Java developers keep breaking their keyboards?",
"punchline": "Because they use a strongly typed language."
},
{
"id": 75,
"type": "general",
"setup": "What do you give to a lemon in need?",
"punchline": "Lemonaid."
},
{
"id": 76,
"type": "general",
"setup": "Never take advice from electrons.",
"punchline": "They are always negative."
},
{
"id": 78,
"type": "general",
"setup": "Hey, dad, did you get a haircut?",
"punchline": "No, I got them all cut."
},
{
"id": 79,
"type": "general",
"setup": "What time is it?",
"punchline": "I don't know... it keeps changing."
},
{
"id": 80,
"type": "general",
"setup": "A weasel walks into a bar. The bartender says, \"Wow, I've never served a weasel before. What can I get for you?\"",
"punchline": "Pop,goes the weasel."
},
{
"id": 81,
"type": "general",
"setup": "Bad at golf?",
"punchline": "Join the club."
},
{
"id": 82,
"type": "general",
"setup": "Can a kangaroo jump higher than the Empire State Building?",
"punchline": "Of course. The Empire State Building can't jump."
},
{
"id": 83,
"type": "general",
"setup": "Can February march?",
"punchline": "No, but April may."
},
{
"id": 84,
"type": "general",
"setup": "Can I watch the TV?",
"punchline": "Yes, but don’t turn it on."
},
{
"id": 85,
"type": "general",
"setup": "Dad, can you put my shoes on?",
"punchline": "I don't think they'll fit me."
},
{
"id": 86,
"type": "general",
"setup": "Did you hear about the bread factory burning down?",
"punchline": "They say the business is toast."
},
{
"id": 87,
"type": "general",
"setup": "Did you hear about the chameleon who couldn't change color?",
"punchline": "They had a reptile dysfunction."
},
{
"id": 88,
"type": "general",
"setup": "Did you hear about the cheese factory that exploded in France?",
"punchline": "There was nothing left but de Brie."
},
{
"id": 89,
"type": "general",
"setup": "Did you hear about the cow who jumped over the barbed wire fence?",
"punchline": "It was udder destruction."
},
{
"id": 90,
"type": "general",
"setup": "Did you hear about the guy who invented Lifesavers?",
"punchline": "They say he made a mint."
},
{
"id": 91,
"type": "general",
"setup": "Did you hear about the guy whose whole left side was cut off?",
"punchline": "He's all right now."
},
{
"id": 92,
"type": "general",
"setup": "Did you hear about the kidnapping at school?",
"punchline": "It's ok, he woke up."
},
{
"id": 93,
"type": "general",
"setup": "Did you hear about the Mexican train killer?",
"punchline": "He had loco motives"
},
{
"id": 94,
"type": "general",
"setup": "Did you hear about the new restaurant on the moon?",
"punchline": "The food is great, but there’s just no atmosphere."
},
{
"id": 95,
"type": "general",
"setup": "Did you hear about the runner who was criticized?",
"punchline": "He just took it in stride"
},
{
"id": 96,
"type": "general",
"setup": "Did you hear about the scientist who was lab partners with a pot of boiling water?",
"punchline": "He had a very esteemed colleague."
},
{
"id": 97,
"type": "general",
"setup": "Did you hear about the submarine industry?",
"punchline": "It really took a dive..."
},
{
"id": 98,
"type": "general",
"setup": "Did you hear that David lost his ID in prague?",
"punchline": "Now we just have to call him Dav."
},
{
"id": 99,
"type": "general",
"setup": "Did you hear that the police have a warrant out on a midget psychic ripping people off?",
"punchline": "It reads \"Small medium at large.\""
},
{
"id": 100,
"type": "general",
"setup": "Did you hear the joke about the wandering nun?",
"punchline": "She was a roman catholic."
},
{
"id": 101,
"type": "general",
"setup": "Did you hear the news?",
"punchline": "FedEx and UPS are merging. They’re going to go by the name Fed-Up from now on."
},
{
"id": 102,
"type": "general",
"setup": "Did you hear the one about the guy with the broken hearing aid?",
"punchline": "Neither did he."
},
{
"id": 103,
"type": "general",
"setup": "Did you know crocodiles could grow up to 15 feet?",
"punchline": "But most just have 4."
},
{
"id": 104,
"type": "general",
"setup": "What do ghosts call their true love?",
"punchline": "Their ghoul-friend"
},
{
"id": 105,
"type": "general",
"setup": "Did you know that protons have mass?",
"punchline": "I didn't even know they were catholic."
},
{
"id": 106,
"type": "general",
"setup": "Did you know you should always take an extra pair of pants golfing?",
"punchline": "Just in case you get a hole in one."
},
{
"id": 107,
"type": "general",
"setup": "Do I enjoy making courthouse puns?",
"punchline": "Guilty"
},
{
"id": 108,
"type": "general",
"setup": "Do you know where you can get chicken broth in bulk?",
"punchline": "The stock market."
},
{
"id": 109,
"type": "general",
"setup": "Do you want a brief explanation of what an acorn is?",
"punchline": "In a nutshell, it's an oak tree."
},
{
"id": 110,
"type": "general",
"setup": "Ever wondered why bees hum?",
"punchline": "It's because they don't know the words."
},
{
"id": 111,
"type": "general",
"setup": "Have you ever heard of a music group called Cellophane?",
"punchline": "They mostly wrap."
},
{
"id": 112,
"type": "general",
"setup": "Have you heard of the band 1023MB?",
"punchline": "They haven't got a gig yet."
},
{
"id": 113,
"type": "general",
"setup": "Have you heard the rumor going around about butter?",
"punchline": "Never mind, I shouldn't spread it."
},
{
"id": 114,
"type": "general",
"setup": "How are false teeth like stars?",
"punchline": "They come out at night!"
},
{
"id": 115,
"type": "general",
"setup": "How can you tell a vampire has a cold?",
"punchline": "They start coffin."
},
{
"id": 116,
"type": "general",
"setup": "How come a man driving a train got struck by lightning?",
"punchline": "He was a good conductor."
},
{
"id": 117,
"type": "general",
"setup": "How come the stadium got hot after the game?",
"punchline": "Because all of the fans left."
},
{
"id": 118,
"type": "general",
"setup": "How did Darth Vader know what Luke was getting for Christmas?",
"punchline": "He felt his presents."
},
{
"id": 119,
"type": "general",
"setup": "How did the hipster burn the roof of his mouth?",
"punchline": "He ate the pizza before it was cool."
},
{
"id": 120,
"type": "general",
"setup": "How do hens stay fit?",
"punchline": "They always egg-cercise!"
},
{
"id": 121,
"type": "general",
"setup": "How do locomotives know where they're going?",
"punchline": "Lots of training"
},
{
"id": 122,
"type": "general",
"setup": "How do the trees get on the internet?",
"punchline": "They log on."
},
{
"id": 123,
"type": "general",
"setup": "How do you find Will Smith in the snow?",
"punchline": " Look for fresh prints."
},
{
"id": 124,
"type": "general",
"setup": "How do you fix a broken pizza?",
"punchline": "With tomato paste."
},
{
"id": 125,
"type": "general",
"setup": "How do you fix a damaged jack-o-lantern?",
"punchline": "You use a pumpkin patch."
},
{
"id": 126,
"type": "general",
"setup": "How do you get a baby alien to sleep?",
"punchline": " You rocket."
},
{
"id": 127,
"type": "general",
"setup": "How do you get two whales in a car?",
"punchline": "Start in England and drive West."
},
{
"id": 128,
"type": "general",
"setup": "How do you know if there’s an elephant under your bed?",
"punchline": "Your head hits the ceiling!"
},
{
"id": 129,
"type": "general",
"setup": "How do you make a hankie dance?",
"punchline": "Put a little boogie in it."
},
{
"id": 130,
"type": "general",
"setup": "How do you make holy water?",
"punchline": "You boil the hell out of it."
},
{
"id": 131,
"type": "general",
"setup": "How do you organize a space party?",
"punchline": "You planet."
},
{
"id": 132,
"type": "general",
"setup": "How do you steal a coat?",
"punchline": "You jacket."
},
{
"id": 133,
"type": "general",
"setup": "How do you tell the difference between a crocodile and an alligator?",
"punchline": "You will see one later and one in a while."
},
{
"id": 134,
"type": "general",
"setup": "How does a dyslexic poet write?",
"punchline": "Inverse."
},
{
"id": 135,
"type": "general",
"setup": "How does a French skeleton say hello?",
"punchline": "Bone-jour."
},
{
"id": 136,
"type": "general",
"setup": "How does a penguin build it’s house?",
"punchline": "Igloos it together."
},
{
"id": 137,
"type": "general",
"setup": "How does a scientist freshen their breath?",
"punchline": "With experi-mints!"
},
{
"id": 138,
"type": "general",
"setup": "How does the moon cut his hair?",
"punchline": "Eclipse it."
},
{
"id": 139,
"type": "general",
"setup": "How many apples grow on a tree?",
"punchline": "All of them!"
},
{
"id": 140,
"type": "general",
"setup": "How many bones are in the human hand?",
"punchline": "A handful of them."
},
{
"id": 141,
"type": "general",
"setup": "How many hipsters does it take to change a lightbulb?",
"punchline": "Oh, it's a really obscure number. You've probably never heard of it."
},
{
"id": 142,
"type": "general",
"setup": "How many kids with ADD does it take to change a lightbulb?",
"punchline": "Let's go ride bikes!"
},
{
"id": 143,
"type": "general",
"setup": "How many optometrists does it take to change a light bulb?",
"punchline": "1 or 2? 1... or 2?"
},
{
"id": 144,
"type": "general",
"setup": "How many seconds are in a year?",
"punchline": "12. January 2nd, February 2nd, March 2nd, April 2nd.... etc"
},
{
"id": 145,
"type": "general",
"setup": "How many South Americans does it take to change a lightbulb?",
"punchline": "A Brazilian"
},
{
"id": 146,
"type": "general",
"setup": "How many tickles does it take to tickle an octopus?",
"punchline": "Ten-tickles!"
},
{
"id": 147,
"type": "general",
"setup": "How much does a hipster weigh?",
"punchline": "An instagram."
},
{
"id": 148,
"type": "general",
"setup": "How was the snow globe feeling after the storm?",
"punchline": "A little shaken."
},
{
"id": 149,
"type": "general",
"setup": "Is the pool safe for diving?",
"punchline": "It deep ends."
},
{
"id": 150,
"type": "general",
"setup": "Is there a hole in your shoe?",
"punchline": "No… Then how’d you get your foot in it?"
},
{
"id": 151,
"type": "general",
"setup": "What did the spaghetti say to the other spaghetti?",
"punchline": "Pasta la vista, baby!"
},
{
"id": 152,
"type": "general",
"setup": "What’s 50 Cent’s name in Zimbabwe?",
"punchline": "200 Dollars."
},
{
"id": 153,
"type": "general",
"setup": "Want to hear a chimney joke?",
"punchline": "Got stacks of em! First one's on the house"
},
{
"id": 154,
"type": "general",
"setup": "Want to hear a joke about construction?",
"punchline": "Nah, I'm still working on it."
},
{
"id": 155,
"type": "general",
"setup": "Want to hear my pizza joke?",
"punchline": "Never mind, it's too cheesy."
},
{
"id": 156,
"type": "general",
"setup": "What animal is always at a game of cricket?",
"punchline": "A bat."
},
{
"id": 157,
"type": "general",
"setup": "What are the strongest days of the week?",
"punchline": "Saturday and Sunday...the rest are weekdays."
},
{
"id": 158,
"type": "general",
"setup": "What biscuit does a short person like?",
"punchline": "Shortbread. "
},
{
"id": 159,
"type": "general",
"setup": "What cheese can never be yours?",
"punchline": "Nacho cheese."
},
{
"id": 160,
"type": "general",
"setup": "What creature is smarter than a talking parrot?",
"punchline": "A spelling bee."
},
{
"id": 161,
"type": "general",
"setup": "What did celery say when he broke up with his girlfriend?",
"punchline": "She wasn't right for me, so I really don't carrot all."
},
{
"id": 162,
"type": "general",
"setup": "What did Michael Jackson name his denim store?",
"punchline": " Billy Jeans!"
},
{
"id": 163,
"type": "general",
"setup": "What did one nut say as he chased another nut?",
"punchline": " I'm a cashew!"
},
{
"id": 164,
"type": "general",
"setup": "What did one plate say to the other plate?",
"punchline": "Dinner is on me!"
},
{
"id": 165,
"type": "general",
"setup": "What did one snowman say to the other snow man?",
"punchline": "Do you smell carrot?"
},
{
"id": 166,
"type": "general",
"setup": "What did one wall say to the other wall?",
"punchline": "I'll meet you at the corner!"
},
{
"id": 167,
"type": "general",
"setup": "What did Romans use to cut pizza before the rolling cutter was invented?",
"punchline": "Lil Caesars"
},
{
"id": 168,
"type": "general",
"setup": "What did the 0 say to the 8?",
"punchline": "Nice belt."
},
{
"id": 169,
"type": "general",
"setup": "What did the beaver say to the tree?",
"punchline": "It's been nice gnawing you."
},
{
"id": 170,
"type": "general",
"setup": "What did the big flower say to the littler flower?",
"punchline": "Hi, bud!"
},
{
"id": 180,
"type": "general",
"setup": "What did the Buffalo say to his little boy when he dropped him off at school?",
"punchline": "Bison."
},
{
"id": 181,
"type": "general",
"setup": "What did the digital clock say to the grandfather clock?",
"punchline": "Look, no hands!"
},
{
"id": 182,
"type": "general",
"setup": "What did the dog say to the two trees?",
"punchline": "Bark bark."
},
{
"id": 183,
"type": "general",
"setup": "What did the Dorito farmer say to the other Dorito farmer?",
"punchline": "Cool Ranch!"
},
{
"id": 184,
"type": "general",
"setup": "What did the fish say when it swam into a wall?",
"punchline": "Damn!"
},
{
"id": 185,
"type": "general",
"setup": "What did the grape do when he got stepped on?",
"punchline": "He let out a little wine."
},
{
"id": 186,
"type": "general",
"setup": "What did the judge say to the dentist?",
"punchline": "Do you swear to pull the tooth, the whole tooth and nothing but the tooth?"
},
{
"id": 187,
"type": "general",
"setup": "What did the late tomato say to the early tomato?",
"punchline": "I’ll ketch up"
},
{
"id": 188,
"type": "general",
"setup": "What did the left eye say to the right eye?",
"punchline": "Between us, something smells!"
},
{
"id": 189,
"type": "general",
"setup": "What did the mountain climber name his son?",
"punchline": "Cliff."
},
{
"id": 189,
"type": "general",
"setup": "What did the ocean say to the beach?",
"punchline": "Thanks for all the sediment."
},
{
"id": 190,
"type": "general",
"setup": "What did the ocean say to the shore?",
"punchline": "Nothing, it just waved."
},
{
"id": 191,
"type": "general",
"setup": "Why don't you find hippopotamuses hiding in trees?",
"punchline": "They're really good at it."
},
{
"id": 192,
"type": "general",
"setup": "What did the pirate say on his 80th birthday?",
"punchline": "Aye Matey!"
},
{
"id": 193,
"type": "general",
"setup": "What did the Red light say to the Green light?",
"punchline": "Don't look at me I'm changing!"
},
{
"id": 194,
"type": "general",
"setup": "What did the scarf say to the hat?",
"punchline": "You go on ahead, I am going to hang around a bit longer."
},
{
"id": 195,
"type": "general",
"setup": "What did the shy pebble wish for?",
"punchline": "That she was a little boulder."
},
{
"id": 196,
"type": "general",
"setup": "What did the traffic light say to the car as it passed?",
"punchline": "Don't look I'm changing!"
},
{
"id": 197,
"type": "general",
"setup": "What did the Zen Buddist say to the hotdog vendor?",
"punchline": "Make me one with everything."
},
{
"id": 198,
"type": "general",
"setup": "What do birds give out on Halloween?",
"punchline": "Tweets."
},
{
"id": 199,
"type": "general",
"setup": "What do I look like?",
"punchline": "A JOKE MACHINE!?"
},
{
"id": 200,
"type": "general",
"setup": "What do prisoners use to call each other?",
"punchline": "Cell phones."
},
{
"id": 201,
"type": "general",
"setup": "What do vegetarian zombies eat?",
"punchline": "Grrrrrainnnnnssss."
},
{
"id": 202,
"type": "general",
"setup": "What do you call a bear with no teeth?",
"punchline": "A gummy bear!"
},
{
"id": 203,
"type": "general",
"setup": "What do you call a bee that lives in America?",
"punchline": "A USB."
},
{
"id": 204,
"type": "general",
"setup": "What do you call a boomerang that won't come back?",
"punchline": "A stick."
},
{
"id": 205,
"type": "general",
"setup": "What do you call a careful wolf?",
"punchline": "Aware wolf."
},
{
"id": 206,
"type": "general",
"setup": "What do you call a cow on a trampoline?",
"punchline": "A milk shake!"
},
{
"id": 207,
"type": "general",
"setup": "What do you call a cow with no legs?",
"punchline": "Ground beef."
},
{
"id": 208,
"type": "general",
"setup": "What do you call a cow with two legs?",
"punchline": "Lean beef."
},
{
"id": 209,
"type": "general",
"setup": "What do you call a crowd of chess players bragging about their wins in a hotel lobby?",
"punchline": "Chess nuts boasting in an open foyer."
},
{
"id": 210,
"type": "general",
"setup": "What do you call a dad that has fallen through the ice?",
"punchline": "A Popsicle."
},
{
"id": 211,
"type": "general",
"setup": "What do you call a dictionary on drugs?",
"punchline": "High definition."
},
{
"id": 212,
"type": "general",
"setup": "what do you call a dog that can do magic tricks?",
"punchline": "a labracadabrador"
},
{
"id": 213,
"type": "general",
"setup": "What do you call a droid that takes the long way around?",
"punchline": "R2 detour."
},
{
"id": 214,
"type": "general",
"setup": "What do you call a duck that gets all A's?",
"punchline": "A wise quacker."
},
{
"id": 215,
"type": "general",
"setup": "What do you call a fake noodle?",
"punchline": "An impasta."
},
{
"id": 216,
"type": "general",
"setup": "What do you call a fashionable lawn statue with an excellent sense of rhythmn?",
"punchline": "A metro-gnome"
},
{
"id": 217,
"type": "general",
"setup": "What do you call a fat psychic?",
"punchline": "A four-chin teller."
},
{
"id": 218,
"type": "general",
"setup": "What do you call a fly without wings?",
"punchline": "A walk."
},
{
"id": 219,
"type": "general",
"setup": "What do you call a girl between two posts?",
"punchline": "Annette."
},
{
"id": 220,
"type": "general",
"setup": "What do you call a group of disorganized cats?",
"punchline": "A cat-tastrophe."
},
{
"id": 221,
"type": "general",
"setup": "What do you call a group of killer whales playing instruments?",
"punchline": "An Orca-stra."
},
{
"id": 222,
"type": "general",
"setup": "What do you call a monkey in a mine field?",
"punchline": "A babooooom!"
},
{
"id": 223,
"type": "general",
"setup": "What do you call a nervous javelin thrower?",
"punchline": "Shakespeare."
},
{
"id": 224,
"type": "general",
"setup": "What do you call a pig that knows karate?",
"punchline": "A pork chop!"
},
{
"id": 225,
"type": "general",
"setup": "What do you call a pig with three eyes?",
"punchline": "Piiig"
},
{
"id": 226,
"type": "general",
"setup": "What do you call a pile of cats?",
"punchline": " A Meowtain."
},
{
"id": 227,
"type": "general",
"setup": "What do you call a sheep with no legs?",
"punchline": "A cloud."
},
{
"id": 228,
"type": "general",
"setup": "What do you call a troublesome Canadian high schooler?",
"punchline": "A poutine."
},
{
"id": 229,
"type": "general",
"setup": "What do you call an alligator in a vest?",
"punchline": "An in-vest-igator!"
},
{
"id": 230,
"type": "general",
"setup": "What do you call an Argentinian with a rubber toe?",
"punchline": "Roberto"
},
{
"id": 231,
"type": "general",
"setup": "What do you call an eagle who can play the piano?",
"punchline": "Talonted!"
},
{
"id": 232,
"type": "general",
"setup": "What do you call an elephant that doesn’t matter?",
"punchline": "An irrelephant."
},
{
"id": 233,
"type": "general",
"setup": "What do you call an old snowman?",
"punchline": "Water."
},
{
"id": 234,
"type": "general",
"setup": "What do you call cheese by itself?",
"punchline": "Provolone."
},
{
"id": 235,
"type": "general",
"setup": "What do you call corn that joins the army?",
"punchline": "Kernel."
},
{
"id": 236,
"type": "general",
"setup": "What do you call someone with no nose?",
"punchline": "Nobody knows."
},
{
"id": 237,
"type": "general",
"setup": "What do you call two barracuda fish?",
"punchline": " A Pairacuda!"
},
{
"id": 238,
"type": "general",
"setup": "What do you do on a remote island?",
"punchline": "Try and find the TV island it belongs to."
},
{
"id": 239,
"type": "general",
"setup": "What do you do when you see a space man?",
"punchline": "Park your car, man."
},
{
"id": 240,
"type": "general",
"setup": "What do you get hanging from Apple trees?",
"punchline": "Sore arms."
},
{
"id": 241,
"type": "general",
"setup": "What do you get when you cross a bee and a sheep?",
"punchline": "A bah-humbug."
},
{
"id": 242,
"type": "general",
"setup": "What do you get when you cross a chicken with a skunk?",
"punchline": "A fowl smell!"
},
{
"id": 243,
"type": "general",
"setup": "What do you get when you cross a rabbit with a water hose?",
"punchline": "Hare spray."
},
{
"id": 244,
"type": "general",
"setup": "What do you get when you cross a snowman with a vampire?",
"punchline": "Frostbite."
},
{
"id": 245,
"type": "general",
"setup": "What do you give a sick lemon?",
"punchline": "Lemonaid."
},
{
"id": 246,
"type": "general",
"setup": "What does a clock do when it's hungry?",
"punchline": "It goes back four seconds!"
},
{
"id": 247,
"type": "general",
"setup": "What does a female snake use for support?",
"punchline": "A co-Bra!"
},
{
"id": 248,
"type": "general",
"setup": "What does a pirate pay for his corn?",
"punchline": "A buccaneer!"
},
{
"id": 249,
"type": "general",
"setup": "What does an angry pepper do?",
"punchline": "It gets jalapeño face."
},
{
"id": 250,
"type": "general",
"setup": "What happens to a frog's car when it breaks down?",
"punchline": "It gets toad."
},
{
"id": 251,
"type": "general",
"setup": "What happens when you anger a brain surgeon?",
"punchline": "They will give you a piece of your mind."
},
{
"id": 252,
"type": "general",
"setup": "What has ears but cannot hear?",
"punchline": "A field of corn."
},
{
"id": 253,
"type": "general",
"setup": "What is a centipedes's favorite Beatle song?",
"punchline": " I want to hold your hand, hand, hand, hand..."
},
{
"id": 254,
"type": "general",
"setup": "What is a tornado's favorite game to play?",
"punchline": "Twister!"
},
{
"id": 255,
"type": "general",
"setup": "What is a vampire's favorite fruit?",
"punchline": "A blood orange."
},
{
"id": 256,
"type": "general",
"setup": "What is a witch's favorite subject in school?",
"punchline": "Spelling!"
},
{
"id": 257,
"type": "general",
"setup": "What is red and smells like blue paint?",
"punchline": "Red paint!"
},
{
"id": 258,
"type": "general",
"setup": "What is the difference between ignorance and apathy?",
"punchline": "I don't know and I don't care."
},
{
"id": 259,
"type": "general",
"setup": "What is the hardest part about sky diving?",
"punchline": "The ground."
},
{
"id": 260,
"type": "general",
"setup": "What is the leading cause of dry skin?",
"punchline": "Towels"
},
{
"id": 261,
"type": "general",
"setup": "What is the least spoken language in the world?",
"punchline": "Sign Language"
},
{
"id": 262,
"type": "general",
"setup": "What is the tallest building in the world?",
"punchline": "The library, it’s got the most stories!"
},
{
"id": 263,
"type": "general",
"setup": "What is this movie about?",
"punchline": "It is about 2 hours long."
},
{
"id": 264,
"type": "general",
"setup": "What kind of award did the dentist receive?",
"punchline": "A little plaque."
},
{
"id": 265,
"type": "general",
"setup": "What kind of bagel can fly?",
"punchline": "A plain bagel."
},
{
"id": 266,
"type": "general",
"setup": "What kind of dinosaur loves to sleep?",
"punchline": "A stega-snore-us."
},
{
"id": 267,
"type": "general",
"setup": "What kind of dog lives in a particle accelerator?",
"punchline": "A Fermilabrador Retriever."
},
{
"id": 268,
"type": "general",
"setup": "What kind of magic do cows believe in?",
"punchline": "MOODOO."
},
{
"id": 269,
"type": "general",
"setup": "What kind of music do planets listen to?",
"punchline": "Nep-tunes."
},
{
"id": 270,
"type": "general",
"setup": "What kind of pants do ghosts wear?",
"punchline": "Boo jeans."
},
{
"id": 271,
"type": "general",
"setup": "What kind of tree fits in your hand?",
"punchline": "A palm tree!"
},
{
"id": 272,
"type": "general",
"setup": "What lies at the bottom of the ocean and twitches?",
"punchline": "A nervous wreck."
},
{
"id": 273,
"type": "general",
"setup": "What musical instrument is found in the bathroom?",
"punchline": "A tuba toothpaste."
},
{
"id": 274,
"type": "general",
"setup": "What time did the man go to the dentist?",
"punchline": "Tooth hurt-y."
},
{
"id": 275,
"type": "general",
"setup": "What type of music do balloons hate?",
"punchline": "Pop music!"
},
{
"id": 276,
"type": "general",
"setup": "What was a more important invention than the first telephone?",
"punchline": "The second one."
},
{
"id": 277,
"type": "general",
"setup": "What was the pumpkin’s favorite sport?",
"punchline": "Squash."
},
{
"id": 278,
"type": "general",
"setup": "What's black and white and read all over?",
"punchline": "The newspaper."
},
{
"id": 279,
"type": "general",
"setup": "What's blue and not very heavy?",
"punchline": " Light blue."
},
{
"id": 280,
"type": "general",
"setup": "What's brown and sticky?",
"punchline": "A stick."
},
{
"id": 281,
"type": "general",
"setup": "What's orange and sounds like a parrot?",
"punchline": "A Carrot."
},
{
"id": 282,
"type": "general",
"setup": "What's red and bad for your teeth?",
"punchline": "A Brick."
},
{
"id": 283,
"type": "general",
"setup": "What's the best thing about elevator jokes?",
"punchline": "They work on so many levels."
},
{
"id": 284,
"type": "general",
"setup": "What's the difference between a guitar and a fish?",
"punchline": "You can tune a guitar but you can't \"tuna\"fish!"
},
{
"id": 285,
"type": "general",
"setup": "What's the difference between a hippo and a zippo?",
"punchline": "One is really heavy, the other is a little lighter."
},
{
"id": 286,
"type": "general",
"setup": "What's the difference between a seal and a sea lion?",
"punchline": "An ion! "
},
{
"id": 287,
"type": "general",
"setup": "What's the worst part about being a cross-eyed teacher?",
"punchline": "They can't control their pupils."
},
{
"id": 288,
"type": "general",
"setup": "What's the worst thing about ancient history class?",
"punchline": "The teachers tend to Babylon."
},
{
"id": 289,
"type": "general",
"setup": "What’s brown and sounds like a bell?",
"punchline": "Dung!"
},
{
"id": 290,
"type": "general",
"setup": "What’s E.T. short for?",
"punchline": "He’s only got little legs."
},
{
"id": 291,
"type": "general",
"setup": "What’s Forest Gump’s Facebook password?",
"punchline": "1forest1"
},
{
"id": 292,
"type": "general",
"setup": "What’s the advantage of living in Switzerland?",
"punchline": "Well, the flag is a big plus."
},
{
"id": 293,
"type": "general",
"setup": "What’s the difference between an African elephant and an Indian elephant?",
"punchline": "About 5000 miles."
},
{
"id": 294,
"type": "general",
"setup": "When do doctors get angry?",
"punchline": "When they run out of patients."
},
{
"id": 295,
"type": "general",
"setup": "When does a joke become a dad joke?",
"punchline": "When it becomes apparent."
},
{
"id": 296,
"type": "general",
"setup": "When is a door not a door?",
"punchline": "When it's ajar."
},
{
"id": 297,
"type": "general",
"setup": "Where did you learn to make ice cream?",
"punchline": "Sunday school."
},
{
"id": 298,
"type": "general",
"setup": "Where do bees go to the bathroom?",
"punchline": " The BP station."
},
{
"id": 299,
"type": "general",
"setup": "Where do hamburgers go to dance?",
"punchline": "The meat-ball."
},
{
"id": 300,
"type": "general",
"setup": "Where do rabbits go after they get married?",
"punchline": "On a bunny-moon."
},
{
"id": 301,
"type": "general",
"setup": "Where do sheep go to get their hair cut?",
"punchline": "The baa-baa shop."
},
{
"id": 302,
"type": "general",
"setup": "Where do you learn to make banana splits?",
"punchline": "At sundae school."
},
{
"id": 303,
"type": "general",
"setup": "Where do young cows eat lunch?",
"punchline": "In the calf-ateria."
},
{
"id": 304,
"type": "general",
"setup": "Where does batman go to the bathroom?",
"punchline": "The batroom."
},
{
"id": 305,
"type": "general",
"setup": "Where does Fonzie like to go for lunch?",
"punchline": "Chick-Fil-Eyyyyyyyy."
},
{
"id": 306,
"type": "general",
"setup": "Where does Napoleon keep his armies?",
"punchline": "In his sleevies."
},
{
"id": 307,
"type": "general",
"setup": "Where was the Declaration of Independence signed?",
"punchline": "At the bottom! "
},
{
"id": 308,
"type": "general",
"setup": "Where’s the bin?",
"punchline": "I haven’t been anywhere!"
},
{
"id": 309,
"type": "general",
"setup": "Which side of the chicken has more feathers?",
"punchline": "The outside."
},
{
"id": 310,
"type": "general",
"setup": "Who did the wizard marry?",
"punchline": "His ghoul-friend"
},
{
"id": 311,
"type": "general",
"setup": "Who is the coolest Doctor in the hospital?",
"punchline": "The hip Doctor!"
},
{
"id": 312,
"type": "general",
"setup": "Why are fish easy to weigh?",
"punchline": "Because they have their own scales."
},
{
"id": 313,
"type": "general",
"setup": "Why are fish so smart?",
"punchline": "Because they live in schools!"
},
{
"id": 314,
"type": "general",
"setup": "Why are ghosts bad liars?",
"punchline": "Because you can see right through them!"
},
{
"id": 315,
"type": "general",
"setup": "Why are graveyards so noisy?",
"punchline": "Because of all the coffin."
},
{
"id": 316,
"type": "general",
"setup": "Why are mummys scared of vacation?",
"punchline": "They're afraid to unwind."
},
{
"id": 317,
"type": "general",
"setup": "Why are oranges the smartest fruit?",
"punchline": "Because they are made to concentrate. "
},
{
"id": 318,
"type": "general",
"setup": "Why are pirates called pirates?",
"punchline": "Because they arrr!"
},
{
"id": 319,
"type": "general",
"setup": "Why are skeletons so calm?",
"punchline": "Because nothing gets under their skin."
},
{
"id": 320,
"type": "general",
"setup": "Why can't a bicycle stand on its own?",
"punchline": "It's two-tired."
},
{
"id": 321,
"type": "general",
"setup": "Why can't you use \"Beef stew\"as a password?",
"punchline": "Because it's not stroganoff."
},
{
"id": 322,
"type": "general",
"setup": "Why can't your nose be 12 inches long?",
"punchline": "Because then it'd be a foot!"
},
{
"id": 323,
"type": "general",
"setup": "Why can’t you hear a pterodactyl go to the bathroom?",
"punchline": "The p is silent."
},
{
"id": 324,
"type": "general",
"setup": "Why couldn't the kid see the pirate movie?",
"punchline": "Because it was rated arrr!"
},
{
"id": 325,
"type": "general",
"setup": "Why couldn't the lifeguard save the hippie?",
"punchline": "He was too far out, man."
},
{
"id": 326,
"type": "general",
"setup": "Why did Dracula lie in the wrong coffin?",
"punchline": "He made a grave mistake."
},
{
"id": 327,
"type": "general",
"setup": "Why did Sweden start painting barcodes on the sides of their battleships?",
"punchline": "So they could Scandinavian."
},
{
"id": 328,
"type": "general",
"setup": "Why did the A go to the bathroom and come out as an E?",
"punchline": "Because he had a vowel movement."
},
{
"id": 329,
"type": "general",
"setup": "Why did the barber win the race?",
"punchline": "He took a short cut."
},
{
"id": 330,
"type": "general",
"setup": "Why did the belt go to prison?",
"punchline": "He held up a pair of pants!"
},
{
"id": 331,
"type": "general",
"setup": "Why did the burglar hang his mugshot on the wall?",
"punchline": "To prove that he was framed!"
},
{
"id": 332,
"type": "general",
"setup": "Why did the chicken get a penalty?",
"punchline": "For fowl play."
},
{
"id": 333,
"type": "general",
"setup": "Why did the Clydesdale give the pony a glass of water?",
"punchline": "
Because he was a little horse!"
},
{
"id": 334,
"type": "general",
"setup": "Why did the coffee file a police report?",
"punchline": "It got mugged."
},
{
"id": 335,
"type": "general",
"setup": "Why did the cookie cry?",
"punchline": "Because his mother was a wafer so long"
},
{
"id": 336,
"type": "general",
"setup": "Why did the cookie cry?",
"punchline": "It was feeling crumby."
},
{
"id": 337,
"type": "general",
"setup": "Why did the cowboy have a weiner dog?",
"punchline": "Somebody told him to get a long little doggy."
},
{
"id": 338,
"type": "general",
"setup": "Why did the fireman wear red, white, and blue suspenders?",
"punchline": "To hold his pants up."
},
{
"id": 339,
"type": "general",
"setup": "Why did the girl smear peanut butter on the road?",
"punchline": "To go with the traffic jam."
},
{
"id": 340,
"type": "general",
"setup": "Why did the half blind man fall in the well?",
"punchline": "Because he couldn't see that well!"
},
{
"id": 341,
"type": "general",
"setup": "Why did the house go to the doctor?",
"punchline": "It was having window panes."
},
{
"id": 342,
"type": "general",
"setup": "Why did the kid cross the playground?",
"punchline": "To get to the other slide."
},
{
"id": 343,
"type": "general",
"setup": "Why did the man put his money in the freezer?",
"punchline": "He wanted cold hard cash!"
},
{
"id": 344,
"type": "general",
"setup": "Why did the man run around his bed?",
"punchline": "Because he was trying to catch up on his sleep!"
},
{
"id": 345,
"type": "general",
"setup": "Why did the melons plan a big wedding?",
"punchline": "Because they cantaloupe!"
},
{
"id": 346,
"type": "general",
"setup": "Why did the octopus beat the shark in a fight?",
"punchline": "Because it was well armed."
},
{
"id": 347,
"type": "general",
"setup": "Why did the opera singer go sailing?",
"punchline": "They wanted to hit the high Cs."
},
{
"id": 348,
"type": "general",
"setup": "Why did the scarecrow win an award?",
"punchline": "Because he was outstanding in his field."
},
{
"id": 349,
"type": "general",
"setup": "Why did the tomato blush?",
"punchline": "Because it saw the salad dressing."
},
{
"id": 350,
"type": "general",
"setup": "Why did the tree go to the dentist?",
"punchline": "It needed a root canal."
},
{
"id": 351,
"type": "general",
"setup": "Why did the worker get fired from the orange juice factory?",
"punchline": "Lack of concentration."
},
{
"id": 352,
"type": "general",
"setup": "Why didn't the number 4 get into the nightclub?",
"punchline": "Because he is 2 square."
},
{
"id": 353,
"type": "general",
"setup": "Why didn’t the orange win the race?",
"punchline": "It ran out of juice."
},
{
"id": 354,
"type": "general",
"setup": "Why didn’t the skeleton cross the road?",
"punchline": "Because he had no guts."
},
{
"id": 355,
"type": "general",
"setup": "Why do bananas have to put on sunscreen before they go to the beach?",
"punchline": "Because they might peel!"
},
{
"id": 356,
"type": "general",
"setup": "Why do bears have hairy coats?",
"punchline": "Fur protection."
},
{
"id": 357,
"type": "general",
"setup": "Why do bees have sticky hair?",
"punchline": "Because they use honey combs!"
},
{
"id": 358,
"type": "general",
"setup": "Why do bees hum?",
"punchline": "Because they don't know the words."
},
{
"id": 359,
"type": "general",
"setup": "Why do birds fly south for the winter?",
"punchline": "Because it's too far to walk."
},
{
"id": 360,
"type": "general",
"setup": "Why do choirs keep buckets handy?",
"punchline": "So they can carry their tune"
},
{
"id": 361,
"type": "general",
"setup": "Why do crabs never give to charity?",
"punchline": "Because they’re shellfish."
},
{
"id": 362,
"type": "general",
"setup": "Why do ducks make great detectives?",
"punchline": "They always quack the case."
},
{
"id": 363,
"type": "general",
"setup": "Why do mathematicians hate the U.S.?",
"punchline": "Because it's indivisible."
},
{
"id": 364,
"type": "general",
"setup": "Why do pirates not know the alphabet?",
"punchline": "They always get stuck at \"C\"."
},
{
"id": 365,
"type": "general",
"setup": "Why do pumpkins sit on people’s porches?",
"punchline": "They have no hands to knock on the door."
},
{
"id": 366,
"type": "general",
"setup": "Why do scuba divers fall backwards into the water?",
"punchline": "Because if they fell forwards they’d still be in the boat."
},
{
"id": 367,
"type": "general",
"setup": "Why do trees seem suspicious on sunny days?",
"punchline": "Dunno, they're just a bit shady."
},
{
"id": 368,
"type": "general",
"setup": "Why do valley girls hang out in odd numbered groups?",
"punchline": "Because they can't even."
},
{
"id": 369,
"type": "general",
"setup": "Why do wizards clean their teeth three times a day?",
"punchline": "To prevent bat breath!"
},
{
"id": 370,
"type": "general",
"setup": "Why do you never see elephants hiding in trees?",
"punchline": "Because they're so good at it."
},
{
"id": 371,
"type": "general",
"setup": "Why does a chicken coop only have two doors?",
"punchline": "Because if it had four doors it would be a chicken sedan."
},
{
"id": 372,
"type": "general",
"setup": "Why does a Moon-rock taste better than an Earth-rock?",
"punchline": "Because it's a little meteor."
},
{
"id": 373,
"type": "general",
"setup": "Why does it take longer to get from 1st to 2nd base, than it does to get from 2nd to 3rd base?",
"punchline": "Because there’s a Shortstop in between!"
},
{
"id": 374,
"type": "general",
"setup": "Why does Norway have barcodes on their battleships?",
"punchline": "So when they get back to port, they can Scandinavian."
},
{
"id": 375,
"type": "general",
"setup": "Why does Superman get invited to dinners?",
"punchline": "Because he is a Supperhero."
},
{
"id": 376,
"type": "general",
"setup": "Why does Waldo only wear stripes?",
"punchline": "Because he doesn't want to be spotted."
}
]