-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunning Man 2011.html
More file actions
2875 lines (2875 loc) · 274 KB
/
Running Man 2011.html
File metadata and controls
2875 lines (2875 loc) · 274 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
<!doctype html>
<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available" lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>List of Running Man episodes (2011) - Wikipedia</title>
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"9ee775fc-de84-4afc-b926-2d1bc1f735dc","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"List_of_Running_Man_episodes_(2011)","wgTitle":"List of Running Man episodes (2011)","wgCurRevisionId":1323251024,"wgRevisionId":1323251024,"wgArticleId":49456880,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Interlanguage link template existing link","CS1 uses Korean-language script (ko)","CS1 Korean-language sources (ko)","CS1: unfit URL","Articles with short description","Short description is different from Wikidata","Use mdy dates from February 2016","Short description matches Wikidata","Television articles with incorrect naming style","Articles with Korean-language sources (ko)","Lists of Running Man (TV series) episodes","2011 in South Korean television","2011-related lists"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"List_of_Running_Man_episodes_(2011)","wgRelevantArticleId":49456880,"wgTempUserName":null,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgConfirmEditCaptchaNeededForGenericEdit":false,"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":70000,"wgMetricsPlatformUserExperiments":{"active_experiments":[],"overrides":[],"enrolled":[],"assigned":[],"subject_ids":[],"sampling_units":[],"coordinator":[]},"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q24854788","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGESuggestedEditsTaskTypes":{"taskTypes":["copyedit","link-recommendation"],"unavailableTaskTypes":[]},"wgGETopicsMatchModeEnabled":false,"wgGELevelingUpEnabledForUser":false,"wgGEUseMetricsPlatformExtension":true};
RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.cite.styles":"ready","ext.wikimediamessages.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.makeCollapsible.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.xLab","ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.makeCollapsible","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher","ext.urlShortener.toolbar","ext.centralauth.centralautologin","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
}];});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022">
<script async src="/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022"></script>
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022">
<meta name="generator" content="MediaWiki 1.46.0-wmf.3">
<meta name="referrer" content="origin">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="robots" content="max-image-preview:standard">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=1120">
<meta property="og:title" content="List of Running Man episodes (2011) - Wikipedia">
<meta property="og:type" content="website">
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=edit">
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png">
<link rel="icon" href="/static/favicon/wikipedia.ico">
<link rel="search" type="application/opensearchdescription+xml" href="/w/rest.php/v1/search" title="Wikipedia (en)">
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
<link rel="canonical" href="https://en.wikipedia.org/wiki/List_of_Running_Man_episodes_(2011)">
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom">
<link rel="dns-prefetch" href="//meta.wikimedia.org">
<link rel="dns-prefetch" href="auth.wikimedia.org">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-List_of_Running_Man_episodes_2011 rootpage-List_of_Running_Man_episodes_2011 skin-vector-2022 action-view">
<div id="mw-aria-live-region" class="mw-aria-live-region" aria-live="polite"></div>
<a class="mw-jump-link" href="#bodyContent">Jump to content</a>
<div class="vector-header-container">
<header class="vector-header mw-header no-font-mode-scale">
<div class="vector-header-start">
<nav class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right" title="Main menu">
<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox " aria-label="Main menu"> <label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span> <span class="vector-dropdown-label-text">Main menu</span> </label>
<div class="vector-dropdown-content">
<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">
<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">
<div class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned" data-feature-name="main-menu-pinned" data-pinnable-element-id="vector-main-menu" data-pinned-container-id="vector-main-menu-pinned-container" data-unpinned-container-id="vector-main-menu-unpinned-container">
<div class="vector-pinnable-header-label">Main menu</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
</div>
<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation">
<div class="vector-menu-heading">Navigation</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z"><span>Main page</span></a></li>
<li id="n-contents" class="mw-list-item"><a href="/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li>
<li id="n-currentevents" class="mw-list-item"><a href="/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li>
<li id="n-randompage" class="mw-list-item"><a href="/wiki/Special:Random" title="Visit a randomly selected article [x]" accesskey="x"><span>Random article</span></a></li>
<li id="n-aboutsite" class="mw-list-item"><a href="/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li>
<li id="n-contactpage" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
</ul>
</div>
</div>
<div id="p-interaction" class="vector-menu mw-portlet mw-portlet-interaction">
<div class="vector-menu-heading">Contribute</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-help" class="mw-list-item"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li>
<li id="n-introduction" class="mw-list-item"><a href="/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li>
<li id="n-portal" class="mw-list-item"><a href="/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li>
<li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]" accesskey="r"><span>Recent changes</span></a></li>
<li id="n-upload" class="mw-list-item"><a href="/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li>
<li id="n-specialpages" class="mw-list-item"><a href="/wiki/Special:SpecialPages"><span>Special pages</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<a href="/wiki/Main_Page" class="mw-logo"> <img class="mw-logo-icon" src="/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50"> <span class="mw-logo-container skin-invert"> <img class="mw-logo-wordmark" alt="Wikipedia" src="/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;"> <img class="mw-logo-tagline" alt="The Free Encyclopedia" src="/static/images/mobile/copyright/wikipedia-tagline-en.svg" width="117" height="13" style="width: 7.3125em; height: 0.8125em;"> </span> </a>
</div>
<div class="vector-header-end">
<div id="p-search" role="search" class="vector-search-box-vue vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
<a href="/wiki/Special:Search" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Search Wikipedia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span> <span>Search</span> </a>
<div class="vector-typeahead-search-container">
<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
<form action="/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">
<div id="simpleSearch" class="cdx-search-input__input-wrapper" data-search-loc="header-moved">
<div class="cdx-text-input cdx-text-input--has-start-icon">
<input class="cdx-text-input__input mw-searchInput" autocomplete="off" type="search" name="search" placeholder="Search Wikipedia" aria-label="Search Wikipedia" autocapitalize="sentences" spellcheck="false" title="Search Wikipedia [f]" accesskey="f" id="searchInput"> <span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
</div>
<input type="hidden" name="title" value="Special:Search">
</div>
<button class="cdx-button cdx-search-input__end-button">Search</button>
</form>
</div>
</div>
</div>
<nav class="vector-user-links vector-user-links-wide" aria-label="Personal tools">
<div class="vector-user-links-main">
<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-dropdown" class="vector-dropdown " title="Change the appearance of the page's font size, width, and color">
<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox " aria-label="Appearance"> <label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span> <span class="vector-dropdown-label-text">Appearance</span> </label>
<div class="vector-dropdown-content">
<div id="vector-appearance-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en" class=""><span>Donate</span></a></li>
<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282011%29" title="You are encouraged to create an account and log in; however, it is not mandatory" class=""><span>Create account</span></a></li>
<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282011%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o" class=""><span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out user-links-collapsible-item" title="Log in and more options">
<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox " aria-label="Personal tools"> <label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span> <span class="vector-dropdown-label-text">Personal tools</span> </label>
<div class="vector-dropdown-content">
<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item" title="User menu">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en"><span>Donate</span></a></li>
<li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282011%29" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li>
<li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282011%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
</div>
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="vector-sitenotice-container">
<div id="siteNotice">
<!-- CentralNotice -->
</div>
</div>
<div class="vector-column-start">
<div class="vector-main-menu-container">
<div id="mw-navigation">
<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-pinned-container" class="vector-pinned-container"></div>
</nav>
</div>
</div>
<div class="vector-sticky-pinned-container">
<nav id="mw-panel-toc" aria-label="Contents" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">
<div id="vector-toc-pinned-container" class="vector-pinned-container">
<div id="vector-toc" class="vector-toc vector-pinnable-element">
<div class="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned" data-feature-name="toc-pinned" data-pinnable-element-id="vector-toc">
<h2 class="vector-pinnable-header-label">Contents</h2>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">hide</button>
</div>
<ul class="vector-toc-contents" id="mw-panel-toc-list">
<li id="toc-mw-content-text" class="vector-toc-list-item vector-toc-level-1"><a href="#" class="vector-toc-link">
<div class="vector-toc-text">(Top)</div>
</a></li>
<li id="toc-Episodes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Episodes">
<div class="vector-toc-text">
<span class="vector-toc-numb">1</span> <span>Episodes</span>
</div>
</a>
<ul id="toc-Episodes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Ratings" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Ratings">
<div class="vector-toc-text">
<span class="vector-toc-numb">2</span> <span>Ratings</span>
</div>
</a>
<ul id="toc-Ratings-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Notes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Notes">
<div class="vector-toc-text">
<span class="vector-toc-numb">3</span> <span>Notes</span>
</div>
</a>
<ul id="toc-Notes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-References" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#References">
<div class="vector-toc-text">
<span class="vector-toc-numb">4</span> <span>References</span>
</div>
</a>
<ul id="toc-References-sublist" class="vector-toc-list"></ul></li>
<li id="toc-External_links" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#External_links">
<div class="vector-toc-text">
<span class="vector-toc-numb">5</span> <span>External links</span>
</div>
</a>
<ul id="toc-External_links-sublist" class="vector-toc-list"></ul></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar no-font-mode-scale">
<nav aria-label="Contents" class="vector-toc-landmark">
<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left" title="Table of Contents">
<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox " aria-label="Toggle the table of contents"> <label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span> <span class="vector-dropdown-label-text">Toggle the table of contents</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<h1 id="firstHeading" class="firstHeading mw-first-heading">List of <i>Running Man</i> episodes (2011)</h1>
<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang">
<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Go to an article in another language. Available in 3 languages"> <label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-3" aria-hidden="true"><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span> <span class="vector-dropdown-label-text">3 languages</span> </label>
<div class="vector-dropdown-content">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Anexo:Episodios_de_Running_Man_(2011)" title="Anexo:Episodios de Running Man (2011) – Spanish" lang="es" hreflang="es" data-title="Anexo:Episodios de Running Man (2011)" data-language-autonym="Español" data-language-local-name="Spanish" class="interlanguage-link-target"><span>Español</span></a></li>
<li class="interlanguage-link interwiki-id mw-list-item"><a href="https://id.wikipedia.org/wiki/Daftar_episode_Running_Man_(2011)" title="Daftar episode Running Man (2011) – Indonesian" lang="id" hreflang="id" data-title="Daftar episode Running Man (2011)" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" class="interlanguage-link-target"><span>Bahasa Indonesia</span></a></li>
<li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://vi.wikipedia.org/wiki/Danh_s%C3%A1ch_t%E1%BA%ADp_c%E1%BB%A7a_Running_Man_(2011)" title="Danh sách tập của Running Man (2011) – Vietnamese" lang="vi" hreflang="vi" data-title="Danh sách tập của Running Man (2011)" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li>
</ul>
<div class="after-portlet after-portlet-lang">
<span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q24854788#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span>
</div>
</div>
</div>
</div>
</header>
<div class="vector-page-toolbar vector-feature-custom-font-size-clientpref--excluded">
<div class="vector-page-toolbar-container">
<div id="left-navigation">
<nav aria-label="Namespaces">
<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2011)" title="View the content page [c]" accesskey="c"><span>Article</span></a></li>
<li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/wiki/Talk:List_of_Running_Man_episodes_(2011)" rel="discussion" title="Discuss improvements to the content page [t]" accesskey="t"><span>Talk</span></a></li>
</ul>
</div>
</div>
<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet">
<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Change language variant"> <label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">English</span> </label>
<div class="vector-dropdown-content">
<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div id="right-navigation" class="vector-collapsible">
<nav aria-label="Views">
<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2011)"><span>Read</span></a></li>
<li id="ca-edit" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=history" title="Past revisions of this page [h]" accesskey="h"><span>View history</span></a></li>
</ul>
</div>
</div>
</nav>
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown">
<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox " aria-label="Tools"> <label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">Tools</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">
<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">
<div class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned" data-feature-name="page-tools-pinned" data-pinnable-element-id="vector-page-tools" data-pinned-container-id="vector-page-tools-pinned-container" data-unpinned-container-id="vector-page-tools-unpinned-container">
<div class="vector-pinnable-header-label">Tools</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
</div>
<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items" title="More options">
<div class="vector-menu-heading">Actions</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2011)"><span>Read</span></a></li>
<li id="ca-more-edit" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=history"><span>View history</span></a></li>
</ul>
</div>
</div>
<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb">
<div class="vector-menu-heading">General</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/List_of_Running_Man_episodes_(2011)" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j"><span>What links here</span></a></li>
<li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Special:RecentChangesLinked/List_of_Running_Man_episodes_(2011)" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k"><span>Related changes</span></a></li>
<li id="t-upload" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u"><span>Upload file</span></a></li>
<li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&oldid=1323251024" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li>
<li id="t-info" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=info" title="More information about this page"><span>Page information</span></a></li>
<li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Special:CiteThisPage&page=List_of_Running_Man_episodes_%282011%29&id=1323251024&wpFormIdentifier=titleform" title="Information on how to cite this page"><span>Cite this page</span></a></li>
<li id="t-urlshortener" class="mw-list-item"><a href="/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282011%29"><span>Get shortened URL</span></a></li>
<li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282011%29"><span>Download QR code</span></a></li>
</ul>
</div>
</div>
<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export">
<div class="vector-menu-heading">Print/export</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Special:DownloadAsPdf&page=List_of_Running_Man_episodes_%282011%29&action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li>
<li id="t-print" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&printable=yes" title="Printable version of this page [p]" accesskey="p"><span>Printable version</span></a></li>
</ul>
</div>
</div>
<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects">
<div class="vector-menu-heading">In other projects</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q24854788" title="Structured data on this page hosted by Wikidata [g]" accesskey="g"><span>Wikidata item</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="vector-column-end no-font-mode-scale">
<div class="vector-sticky-pinned-container">
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-pinned-container" class="vector-pinned-container"></div>
</nav>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-pinned-container" class="vector-pinned-container">
<div id="vector-appearance" class="vector-appearance vector-pinnable-element">
<div class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned" data-feature-name="appearance-pinned" data-pinnable-element-id="vector-appearance" data-pinned-container-id="vector-appearance-pinned-container" data-unpinned-container-id="vector-appearance-unpinned-container">
<div class="vector-pinnable-header-label">Appearance</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
</div>
</div>
</div>
</nav>
</div>
</div>
<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
<div class="vector-body-before-content">
<div class="mw-indicators"></div>
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
</div>
<div id="contentSub">
<div id="mw-content-subtitle"></div>
</div>
<div id="mw-content-text" class="mw-body-content">
<div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p class="mw-empty-elt"></p>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Season of television series</div>
<style data-mw-deduplicate="TemplateStyles:r1316064257">.mw-parser-output .infobox-subbox{padding:0;border:none;margin:-3px;width:auto;min-width:100%;font-size:100%;clear:none;float:none;background-color:transparent;color:inherit}.mw-parser-output .infobox-3cols-child{margin:-3px}.mw-parser-output .infobox .navbar{font-size:100%}@media screen{html.skin-theme-clientpref-night .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media(min-width:640px){body.skin--responsive .mw-parser-output .infobox-table{display:table!important}body.skin--responsive .mw-parser-output .infobox-table>caption{display:table-caption!important}body.skin--responsive .mw-parser-output .infobox-table>tbody{display:table-row-group}body.skin--responsive .mw-parser-output .infobox-table th,body.skin--responsive .mw-parser-output .infobox-table td{padding-left:inherit;padding-right:inherit}}</style>
<table class="infobox vevent">
<tbody>
<tr>
<th colspan="2" class="infobox-above summary" style="background-color: #FF7EA1; color: black; padding: 0.25em 1em; font-size: 125%;"><i>List of Running Man episodes</i></th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;"><abbr title="Number">No.</abbr> of episodes</th>
<td class="infobox-data">51</td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #FF7EA1; color: black; padding: 0.25em 1em; line-height: 1.5em;">Release</th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original network</th>
<td class="infobox-data"><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a></td>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original release</th>
<td class="infobox-data">January 2<span style="display: none;"> (<span class="bday dtstart published updated itvstart">2011-01-02</span>)</span> –
<br>
December 25, 2011<span style="display: none;"> (<span class="dtend itvend">2011-12-25</span>)</span></td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #FF7EA1; color: black; padding: 0.25em 1em; line-height: 1.5em;">Season chronology</th>
</tr>
<tr class="noprint">
<td colspan="2" class="infobox-full-data">
<div style="float: left;">
← <b>Previous</b>
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2010)" title="List of Running Man episodes (2010)">2010</a>
</div>
<div style="float: right;">
<b>Next</b> →
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2012)" title="List of Running Man episodes (2012)">2012</a>
</div>
</td>
</tr>
<tr>
<td colspan="2" class="infobox-below noprint"><a href="/wiki/List_of_Running_Man_episodes" class="mw-redirect" title="List of Running Man episodes">List of episodes</a></td>
</tr>
</tbody>
</table>
<p>This is a list of episodes of the South Korean <a href="/wiki/Variety_show" title="Variety show">variety show</a> <i><a href="/wiki/Running_Man_(TV_program)" title="Running Man (TV program)">Running Man</a></i> in 2011. The show airs on <a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a> as part of their <i><a href="/wiki/Good_Sunday" title="Good Sunday">Good Sunday</a></i> lineup.</p>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2">
<h2 id="Episodes">Episodes</h2>
<span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_Running_Man_episodes_(2011)&action=edit&section=1" title="Edit section: Episodes"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span>
</div>
<div style="clear:both;" class=""></div>
<table class="wikitable" style="text-align:center;">
<caption>List of episodes (episode 24–74)</caption>
<tbody>
<tr>
<th style="background:#FF7EA1"><abbr title="Episode">Ep.</abbr></th>
<th style="background:#FF7EA1">Broadcast Date
<br>
<small>(Filming Date)</small></th>
<th style="background:#FF7EA1;width:150px;">Guest(s)</th>
<th style="background:#FF7EA1">Landmark</th>
<th style="background:#FF7EA1" colspan="2">Teams</th>
<th style="background:#FF7EA1">Mission</th>
<th style="background:#FF7EA1;width:200px;">Results</th>
</tr>
<tr>
<th>24
<br>
<sup id="cite_ref-year_1-0" class="reference"><a href="#cite_note-year-1"><span class="cite-bracket">[</span>nb 1<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-sjk_2-0" class="reference"><a href="#cite_note-sjk-2"><span class="cite-bracket">[</span>nb 2<span class="cite-bracket">]</span></a></sup></th>
<td>January 2, 2011
<br>
<small>(December 20, 2010)</small></td>
<td><a href="/w/index.php?title=Lee_Kyung-shil&action=edit&redlink=1" class="new" title="Lee Kyung-shil (page does not exist)">Lee Kyung-shil</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EC%9D%B4%EA%B2%BD%EC%8B%A4" class="extiw" title="ko:이경실">ko</a>]</span>,
<br>
<a href="/wiki/Song_Eun-i" title="Song Eun-i">Song Eun-i</a><sup id="cite_ref-ep24_3-0" class="reference"><a href="#cite_note-ep24-3"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup></td>
<td><a href="https://ko.wikipedia.org/wiki/%EC%9E%90%EC%9D%B4" class="extiw" title="ko:자이">Xi Wi City</a><sup id="cite_ref-ep24_3-1" class="reference"><a href="#cite_note-ep24-3"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Ilsan" title="Ilsan">Ilsandong-gu</a>, <a href="/wiki/Goyang" title="Goyang">Goyang</a>, <a href="/wiki/Gyeonggi-do" class="mw-redirect" title="Gyeonggi-do">Gyeonggi-do</a>)</small></td>
<td><small><i><b>Collect Recyclables!:</b></i></small>
<br>
Red Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Lee Kyung-shil)</small>
<br>
Yellow Team
<br>
<small>(Gary, Song Ji-hyo, Song Eun-yi)</small>
<br>
Blue Team
<br>
<small>(Haha, Kim Jong-kook, Lee Kwang-soo, Lizzy)</small>
<br>
<small><i><b>Raise the Heartbeat:</b></i></small>
<br>
Male Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo)</small>
<br>
Female Team
<br>
<small>(Song Ji-hyo, Lizzy, Lee Kyung-shil, Song Eun-i)</small></td>
<td><small><i><b>Bells Hide and Seek:</b></i></small>
<br>
Sons Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Lee Kwang-soo)</small>
<br>
Mothers Team
<br>
<small>(Kim Jong-kook, Song Ji-hyo, Lizzy, Lee Kyung-shil, Song Eun-i)</small></td>
<td rowspan="18">Earn the <i>Running Balls</i></td>
<td>Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Lizzy, Song Eun-i <b>Wins</b>
<br>
<small>Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Lee Kyung-shil wears red <a href="/wiki/Long_underwear" title="Long underwear">long underwear</a> and goes jogging.</small></td>
</tr>
<tr>
<th>25
<br>
<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>nb 3<span class="cite-bracket">]</span></a></sup></th>
<td>January 9, 2011
<br>
<small>(December 27, 2010)</small></td>
<td><a href="/wiki/Park_Bo-young" title="Park Bo-young">Park Bo-young</a><sup id="cite_ref-ep25_5-0" class="reference"><a href="#cite_note-ep25-5"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup></td>
<td>Museum Comics Information Center<sup id="cite_ref-ep25_5-1" class="reference"><a href="#cite_note-ep25-5"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>, <a href="/wiki/Bucheon" title="Bucheon">Bucheon</a>)</small></td>
<td><small><i><b>Come to the Manhwa Room!:</b></i></small>
<br>
White Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Song Joong-ki, Park Bo-young)</small>
<br>
Red Team
<br>
<small>(Gary, Haha, Song Ji-hyo)</small>
<br>
Blue Team
<br>
<small>(Kim Jong-kook, Lee Kwang-soo, Lizzy)</small></td>
<td><small><i><b>Bells Hide and Seek:</b></i></small>
<br>
Red Riding Hood Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo, Lizzy, Park Bo-young)</small>
<br>
Wolf Team
<br>
<small>(Gary, Haha, Kim Jong-kook)</small></td>
<td>Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Song Joong-ki, Park Bo-young <b>Wins</b><sup id="cite_ref-ball_6-0" class="reference"><a href="#cite_note-ball-6"><span class="cite-bracket">[</span>nb 4<span class="cite-bracket">]</span></a></sup>
<br>
<small>Lee Kwang-soo, Song Ji-hyo, Lizzy wears red long underwear and receives a <a href="/wiki/Caricature" title="Caricature">caricature</a>.</small></td>
</tr>
<tr>
<th>26
<br>
<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>nb 5<span class="cite-bracket">]</span></a></sup></th>
<td>January 16, 2011
<br>
<small>(January 3, 2011)</small></td>
<td><a href="/wiki/Jung_Jin-young_(actor)" title="Jung Jin-young (actor)">Jung Jin-young</a>,
<br>
<a href="/wiki/Lee_Moon-sik" title="Lee Moon-sik">Lee Moon-sik</a><sup id="cite_ref-ep26_8-0" class="reference"><a href="#cite_note-ep26-8"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup></td>
<td>Nakwon Instruments Shopping Center<sup id="cite_ref-ep26_8-1" class="reference"><a href="#cite_note-ep26-8"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Insadong" class="mw-redirect" title="Insadong">Insa-dong</a>, <a href="/wiki/Jongno_District" title="Jongno District">Jongno District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Jung Jin-young, Lee Moon-sik)</small>
<br>
Red Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin)</small>
<br>
Yellow Team
<br>
<small>(Gary, Song Ji-hyo, Song Joong-ki)</small>
<br>
Blue Team
<br>
<small>(Kim Jong-kook, Lee Kwang-soo)</small>
<br>
<small><i><b>World Music:</b></i></small>
<br>
Red Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin)</small>
<br>
Yellow Team
<br>
<small>(Gary, Song Ji-hyo, Song Joong-ki)</small>
<br>
Blue Team
<br>
<small>(Kim Jong-kook, Lee Kwang-soo, Jung Jin-young, Lee Moon-sik)</small></td>
<td><small><i><b>Choose One of Two:</b></i></small>
<br>
Red Team
<br>
<small>(Yoo Jae-suk, Gary, Jee Seok-jin, Song Ji-hyo)</small>
<br>
Blue Team
<br>
<small>(Haha, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki)</small></td>
<td>Haha, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Jung Jin-young, Lee Moon-sik <b>Wins</b>
<br>
<small>Yoo Jae-suk, Gary, Jee Seok-jin, Song Ji-hyo wears red long underwear and must take the bus to the next recording at Seoul Arts Center.</small></td>
</tr>
<tr>
<th>27</th>
<td>January 23, 2011
<br>
<small>(January 10, 2011)</small></td>
<td><a href="/wiki/Changmin" class="mw-redirect" title="Changmin">Max Changmin</a>,
<br>
<a href="/wiki/Yunho" title="Yunho">U-Know Yunho</a> (<a href="/wiki/TVXQ" title="TVXQ">TVXQ</a>)<sup id="cite_ref-ep27_9-0" class="reference"><a href="#cite_note-ep27-9"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Seoul_Arts_Center" title="Seoul Arts Center">Seoul Arts Center</a><sup id="cite_ref-ep27_9-1" class="reference"><a href="#cite_note-ep27-9"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Seocho_District" title="Seocho District">Seocho District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Max Changmin, U-Know Yunho)</small>
<br>
Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Drawing Relay:</b></i></small>
<br>
Jae-suk Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Lee Kwang-soo, Song Joong-ki, Max Changmin)</small>
<br>
Jong-kook Team
<br>
<small>(Kim Jong-kook, Gary, Haha, Song Ji-hyo, U-Know Yunho)</small></td>
<td>Everyone <b>Wins</b><sup id="cite_ref-onec_10-0" class="reference"><a href="#cite_note-onec-10"><span class="cite-bracket">[</span>nb 6<span class="cite-bracket">]</span></a></sup></td>
</tr>
<tr>
<th>28
<br>
<sup id="cite_ref-lny_11-0" class="reference"><a href="#cite_note-lny-11"><span class="cite-bracket">[</span>nb 7<span class="cite-bracket">]</span></a></sup></th>
<td>January 30, 2011
<br>
<small>(January 17, 2011)</small></td>
<td><a href="/wiki/Kim_Byung-man" title="Kim Byung-man">Kim Byung-man</a><sup id="cite_ref-ep28_12-0" class="reference"><a href="#cite_note-ep28-12"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup></td>
<td>Ansung Natural Resort<sup id="cite_ref-ep28_12-1" class="reference"><a href="#cite_note-ep28-12"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup>
<br>
<small>(Juksan-myeon, <a href="/wiki/Anseong" title="Anseong">Anseong</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Kim Byung-man)</small>
<br>
Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Diet Karaoke:</b></i></small>
<br>
Yellow Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Song Joong-ki)</small>
<br>
Red Team
<br>
<small>(Gary, Kim Jong-kook, Song Ji-hyo)</small>
<br>
Blue Team
<br>
<small>(Haha, Lee Kwang-soo, Kim Byung-man)</small></td>
<td>Gary, Haha, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo <b>Wins</b>
<br>
<small>Yoo Jae-suk, Jee Seok-jin, Kim Jong-kook, Kim Byung-man wears red long underwear and receives a massage.</small></td>
</tr>
<tr>
<th>29
<br>
<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span class="cite-bracket">[</span>nb 8<span class="cite-bracket">]</span></a></sup></th>
<td>February 6, 2011
<br>
<small>(January 24, 2011)</small></td>
<td>No guests<sup id="cite_ref-ep29_14-0" class="reference"><a href="#cite_note-ep29-14"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/COEX_Convention_%26_Exhibition_Center" class="mw-redirect" title="COEX Convention & Exhibition Center">COEX Aquarium</a><sup id="cite_ref-ep29_14-1" class="reference"><a href="#cite_note-ep29-14"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Gangnam_District" title="Gangnam District">Gangnam District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td>Jae-suk Team
<br>
<small>(Yoo Jae-suk, Gary, Jee Seok-jin, Lee Kwang-soo)</small><sup id="cite_ref-mt_15-0" class="reference"><a href="#cite_note-mt-15"><span class="cite-bracket">[</span>nb 9<span class="cite-bracket">]</span></a></sup></td>
<td>Jong-kook Team
<br>
<small>(Kim Jong-kook, Haha, Song Joong-ki, Song Ji-hyo)</small><sup id="cite_ref-mt_15-1" class="reference"><a href="#cite_note-mt-15"><span class="cite-bracket">[</span>nb 9<span class="cite-bracket">]</span></a></sup></td>
<td rowspan="3">Everyone <b>Wins</b><sup id="cite_ref-onec_10-1" class="reference"><a href="#cite_note-onec-10"><span class="cite-bracket">[</span>nb 6<span class="cite-bracket">]</span></a></sup></td>
</tr>
<tr>
<th>30</th>
<td>February 13, 2011
<br>
<small>(January 31, 2011)</small></td>
<td><a href="/wiki/Seungri" title="Seungri">Seung-ri</a> (<a href="/wiki/Big_Bang_(South_Korean_band)" class="mw-redirect" title="Big Bang (South Korean band)">Big Bang</a>)<sup id="cite_ref-ep30_16-0" class="reference"><a href="#cite_note-ep30-16"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/The_National_Center_for_Korean_Traditional_Performing_Arts" class="mw-redirect" title="The National Center for Korean Traditional Performing Arts">The National Center for Korean Traditional Performing Arts</a><sup id="cite_ref-ep30_16-1" class="reference"><a href="#cite_note-ep30-16"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Seocho_District" title="Seocho District">Seocho District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td>Mission Team
<br>
<small>(Seung-ri)</small></td>
<td>Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
</tr>
<tr>
<th>31</th>
<td>February 20, 2011
<br>
<small>(February 9, 2011)</small></td>
<td><a href="/wiki/Hyun_Young" title="Hyun Young">Hyun Young</a><sup id="cite_ref-ep31_17-0" class="reference"><a href="#cite_note-ep31-17"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup></td>
<td>Alpensia Ocean 700 Water Park<sup id="cite_ref-ep31_17-1" class="reference"><a href="#cite_note-ep31-17"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Pyeongchang_County" title="Pyeongchang County">Pyeongchang County</a>, <a href="/wiki/Gangwon_Province_(South_Korea)" class="mw-redirect" title="Gangwon Province (South Korea)">Gangwon</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Hyun Young)</small>
<br>
Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Water Microphone Karaoke:</b></i></small>
<br>
Yellow Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Lee Kwang-soo, Song Joong-ki, Hyun Young)</small>
<br>
Red Team
<br>
<small>(Gary, Haha, Kim Jong-kook, Song Ji-hyo)</small></td>
</tr>
<tr>
<th>32</th>
<td>February 27, 2011
<br>
<small>(February 14, 2011)</small></td>
<td><a href="/wiki/Kim_Kwang-kyu_(actor)" title="Kim Kwang-kyu (actor)">Kim Kwang-kyu</a>,
<br>
<a href="/wiki/Tony_An" title="Tony An">Tony Ahn</a><sup id="cite_ref-ep32_18-0" class="reference"><a href="#cite_note-ep32-18"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup></td>
<td>Woongjin Think Big Office<sup id="cite_ref-ep32_18-1" class="reference"><a href="#cite_note-ep32-18"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Paju" title="Paju">Paju</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Kim Kwang-kyu, Tony Ahn)</small>
<br>
Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Office Olympics:</b></i></small>
<br>
Business Team 1
<br>
<small>(Yoo Jae-suk, Song Joong-ki, Song Ji-hyo, Kim Kwang-kyu, Tony Ahn)</small><sup id="cite_ref-office_19-0" class="reference"><a href="#cite_note-office-19"><span class="cite-bracket">[</span>nb 10<span class="cite-bracket">]</span></a></sup>
<br>
Business Team 2
<br>
<small>(Kim Jong-kook, Gary, Haha, Jee Seok-jin, Lee Kwang-soo)</small><sup id="cite_ref-office_19-1" class="reference"><a href="#cite_note-office-19"><span class="cite-bracket">[</span>nb 10<span class="cite-bracket">]</span></a></sup></td>
<td>Gary, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Kim Kwang-kyu, Tony Ahn <b>Wins</b>
<br>
<small>Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki wears red long underwear, and are abandoned in the middle of Seoul Submerged Bridge and must walk to the south end.</small></td>
</tr>
<tr>
<th>33
<br>
<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span class="cite-bracket">[</span>nb 11<span class="cite-bracket">]</span></a></sup></th>
<td>March 6, 2011
<br>
<small>(February 21, 2011)</small></td>
<td><a href="/wiki/Oh_Ji-ho" title="Oh Ji-ho">Oh Ji-ho</a><sup id="cite_ref-ep33_21-0" class="reference"><a href="#cite_note-ep33-21"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Incheon_International_Airport" title="Incheon International Airport">Incheon International Airport</a><sup id="cite_ref-ep33_21-1" class="reference"><a href="#cite_note-ep33-21"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Jung_District,_Incheon" title="Jung District, Incheon">Jung District, Incheon</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Oh Ji-ho)</small>
<br>
Blue Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Song Joong-ki, Song Ji-hyo)</small><sup id="cite_ref-airport_22-0" class="reference"><a href="#cite_note-airport-22"><span class="cite-bracket">[</span>nb 12<span class="cite-bracket">]</span></a></sup>
<br>
Red Team
<br>
<small>(Kim Jong-kook, Gary, Haha, Lee Kwang-soo)</small><sup id="cite_ref-airport_22-1" class="reference"><a href="#cite_note-airport-22"><span class="cite-bracket">[</span>nb 12<span class="cite-bracket">]</span></a></sup></td>
<td><small><i><b>Vacation Olympics:</b></i></small>
<br>
Running Village 1
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Song Joong-ki, Song Ji-hyo, Oh Ji-ho)</small>
<br>
Running Village 2
<br>
<small>(Kim Jong-kook, Gary, Haha, Lee Kwang-soo)</small></td>
<td>Running Village 1 <b>Wins</b><sup id="cite_ref-ball2_23-0" class="reference"><a href="#cite_note-ball2-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup>
<br>
<small>Running Village 2 wears red long underwear, and are abandoned at Eurwangri <a href="/wiki/Beach" title="Beach">Beach</a> and must go to the sea and put on a mud pack.</small></td>
</tr>
<tr>
<th>34
<br>
<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span class="cite-bracket">[</span>nb 14<span class="cite-bracket">]</span></a></sup></th>
<td>March 13, 2011
<br>
<small>(February 28, 2011)</small></td>
<td><a href="/wiki/Park_Jun-gyu" title="Park Jun-gyu">Park Jun-gyu</a>,
<br>
<a href="/wiki/Uee" title="Uee">Uee</a> (<a href="/wiki/After_School_(band)" class="mw-redirect" title="After School (band)">After School</a>)<sup id="cite_ref-ep34_25-0" class="reference"><a href="#cite_note-ep34-25"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Hongdae_area" class="mw-redirect" title="Hongdae area">Hongdae area</a><sup id="cite_ref-ep34_25-1" class="reference"><a href="#cite_note-ep34-25"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Hongdae_area" class="mw-redirect" title="Hongdae area">Hongdae</a>, <a href="/wiki/Mapo_District" title="Mapo District">Mapo District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Park Jun-gyu, Uee)</small>
<br>
Blue Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki)</small>
<br>
Red Team
<br>
<small>(Kim Jong-kook, Gary, Lee Kwang-soo, Song Ji-hyo)</small></td>
<td><small><i><b>The Master of Serving Water:</b></i></small>
<br>
Domestic Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki, Uee)</small>
<br>
Foreign Team
<br>
<small>(Kim Jong-kook, Gary, Lee Kwang-soo, Song Ji-hyo, Park Jun-gyu)</small></td>
<td>Domestic Team <b>Wins</b><sup id="cite_ref-ball2_23-1" class="reference"><a href="#cite_note-ball2-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup>
<br>
<small>Foreign Team wears red long underwear and pose as models in a drawing class.</small></td>
</tr>
<tr>
<th>35
<br>
<sup id="cite_ref-camp_26-0" class="reference"><a href="#cite_note-camp-26"><span class="cite-bracket">[</span>nb 15<span class="cite-bracket">]</span></a></sup></th>
<td>March 20, 2011
<br>
<small>(March 7, 2011)</small></td>
<td rowspan="2"><a href="/wiki/Daesung" title="Daesung">Dae-sung</a> (<a href="/wiki/Big_Bang_(South_Korean_band)" class="mw-redirect" title="Big Bang (South Korean band)">Big Bang</a>),
<br>
<a href="/wiki/Jung_Yong-hwa" title="Jung Yong-hwa">Jung Yong-hwa</a> (<a href="/wiki/CNBLUE" title="CNBLUE">CNBLUE</a>)<sup id="cite_ref-ep35_27-0" class="reference"><a href="#cite_note-ep35-27"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup></td>
<td rowspan="2">Nanji Camp<sup id="cite_ref-ep35_27-1" class="reference"><a href="#cite_note-ep35-27"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Sangam-dong" title="Sangam-dong">Sangam-dong</a>, <a href="/wiki/Mapo_District" title="Mapo District">Mapo District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td rowspan="2"><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Dae-sung, Jung Yong-hwa)</small>
<br>
Blue Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki)</small><sup id="cite_ref-boat_28-0" class="reference"><a href="#cite_note-boat-28"><span class="cite-bracket">[</span>nb 16<span class="cite-bracket">]</span></a></sup>
<br>
Red Team
<br>
<small>(Song Ji-hyo, Gary, Kim Jong-kook, Lee Kwang-soo)</small><sup id="cite_ref-boat_28-1" class="reference"><a href="#cite_note-boat-28"><span class="cite-bracket">[</span>nb 16<span class="cite-bracket">]</span></a></sup></td>
<td rowspan="2"><small><i><b>The Lord of Camping:</b></i></small>
<br>
Platoon 1
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki, Dae-sung)</small>
<br>
Platoon 2
<br>
<small>(Kim Jong-kook, Gary, Lee Kwang-soo, Song Ji-hyo, Jung Yong-hwa)</small></td>
<td rowspan="2">Platoon 2 <b>Wins</b><sup id="cite_ref-ball2_23-2" class="reference"><a href="#cite_note-ball2-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup>
<br>
<small>Platoon 1 wears red long underwear, and are abandoned in <a href="/wiki/Gwanghwamun" title="Gwanghwamun">Gwanghwamun</a> and must run to the statue of <a href="/wiki/Sejong_the_Great" title="Sejong the Great">King Sejong</a>.</small></td>
</tr>
<tr>
<th>36
<br>
<sup id="cite_ref-camp_26-1" class="reference"><a href="#cite_note-camp-26"><span class="cite-bracket">[</span>nb 15<span class="cite-bracket">]</span></a></sup></th>
<td>March 27, 2011
<br>
<small>(March 7, 2011)</small></td>
</tr>
<tr>
<th>37</th>
<td>April 3, 2011
<br>
<small>(March 14, 2011)</small></td>
<td><a href="/wiki/Park_Ye-jin" title="Park Ye-jin">Park Ye-jin</a><sup id="cite_ref-29" class="reference"><a href="#cite_note-29"><span class="cite-bracket">[</span>13<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Metapolis" title="Metapolis">Metapolis</a><sup id="cite_ref-30" class="reference"><a href="#cite_note-30"><span class="cite-bracket">[</span>14<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Hwaseong,_Gyeonggi" title="Hwaseong, Gyeonggi">Hwaseong</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Park Ye-jin)</small>
<br>
Chasing Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Grand Opening:</b></i></small>
<br>
Hyuk's People
<br>
<small>(Yoo Jae-suk, Gary, Jee Seok-jin, Lee Kwang-soo, Park Ye-jin)</small>
<br>
Kook's People
<br>
<small>(Kim Jong-kook, Haha, Song Joong-ki, Song Ji-hyo)</small></td>
<td>Hyuk's People <b>Wins</b><sup id="cite_ref-ball2_23-3" class="reference"><a href="#cite_note-ball2-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup>
<br>
<small>Kook's People wears red long underwear, gets abandoned at a highway <a href="/wiki/Rest_area" title="Rest area">rest area</a>, and must eat noodles together while looking at each other.</small></td>
</tr>
<tr>
<th>38</th>
<td>April 10, 2011
<br>
<small>(March 21, 2011)</small></td>
<td>No guests<sup id="cite_ref-31" class="reference"><a href="#cite_note-31"><span class="cite-bracket">[</span>15<span class="cite-bracket">]</span></a></sup></td>
<td>Seoul Medical Center<sup id="cite_ref-32" class="reference"><a href="#cite_note-32"><span class="cite-bracket">[</span>16<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Jungnang_District" title="Jungnang District">Jungnang District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td><small><i><b>Find the Guests:</b></i></small>
<br>
Mission Team
<br>
<small>(Yoo Jae-suk)</small><sup id="cite_ref-33" class="reference"><a href="#cite_note-33"><span class="cite-bracket">[</span>nb 17<span class="cite-bracket">]</span></a></sup>
<br>
Chasing Team
<br>
<small>(Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small></td>
<td><small><i><b>Physical Examination:</b></i></small>
<br>
Blue Team
<br>
<small>(Yoo Jae-suk, Jee Seok-jin, Lee Kwang-soo, Song Ji-hyo)</small>
<br>
Red Team
<br>
<small>(Gary, Haha, Kim Jong-kook, Song Joong-ki)</small></td>
<td>Yoo Jae-suk, Gary, Haha, Kim Jong-kook, Song Joong-ki <b>Wins</b><sup id="cite_ref-ball_6-1" class="reference"><a href="#cite_note-ball-6"><span class="cite-bracket">[</span>nb 4<span class="cite-bracket">]</span></a></sup>
<br>
<small>Jee Seok-jin, Lee Kwang-soo, Song Ji-hyo wears red long underwear and must find and wear a pair of slippers on a mountain.</small></td>
</tr>
<tr>
<th>39</th>
<td>April 17, 2011
<br>
<small>(April 4, 2011)</small></td>
<td><a href="/wiki/Sunny_(singer)" title="Sunny (singer)">Sunny</a>,
<br>
<a href="/wiki/Im_Yoona" class="mw-redirect" title="Im Yoona">Yoona</a> (<a href="/wiki/Girls%27_Generation" title="Girls' Generation">Girls' Generation</a>)<sup id="cite_ref-ep39_34-0" class="reference"><a href="#cite_note-ep39-34"><span class="cite-bracket">[</span>17<span class="cite-bracket">]</span></a></sup></td>
<td>Seoul Folk Flea Market<sup id="cite_ref-ep39_34-1" class="reference"><a href="#cite_note-ep39-34"><span class="cite-bracket">[</span>17<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Dongdaemun_District" title="Dongdaemun District">Dongdaemun District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</small></td>
<td><small><i><b>Catch the Running Man:</b></i></small>
<br>
Mission Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small>
<br>
Chasing Team
<br>
<small>(Sunny, Yoona)</small></td>
<td><small><i><b>The Best Late-Night Snack is?:</b></i></small>
<br>
Ji-hyo Team
<br>
<small>(Song Ji-hyo, Gary, Kim Jong-kook)</small>
<br>
Sunny Team
<br>
<small>(Sunny, Jee Seok-jin, Lee Kwang-soo, Song Joong-ki)</small>
<br>
Yoona Team
<br>
<small>(Yoona, Yoo Jae-suk, Haha)</small></td>
<td>Yoona & Sunny Team <b>Wins</b><sup id="cite_ref-ball2_23-4" class="reference"><a href="#cite_note-ball2-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup>
<br>
<small>Ji-hyo Team wears red long underwear and must <a href="/wiki/Catwalk" class="mw-redirect" title="Catwalk">catwalk</a> at a mall in <a href="/wiki/Dongdaemun_District" title="Dongdaemun District">Dongdaemun District</a>.</small></td>
</tr>
<tr>
<th>40</th>
<td>April 24, 2011
<br>
<small>(April 11, 2011)</small></td>
<td><a href="/wiki/Nichkhun" title="Nichkhun">Nichkhun</a>,
<br>
<a href="/wiki/Ok_Taec-yeon" title="Ok Taec-yeon">Taecyeon</a> (<a href="/wiki/2PM" title="2PM">2PM</a>)<sup id="cite_ref-ep40_35-0" class="reference"><a href="#cite_note-ep40-35"><span class="cite-bracket">[</span>18<span class="cite-bracket">]</span></a></sup></td>
<td><a href="https://ko.wikipedia.org/wiki/%EC%81%98%EB%9D%A0%ED%94%84%EB%9E%91%EC%8A%A4" class="extiw" title="ko:쁘띠프랑스">Petite France</a><sup id="cite_ref-ep40_35-1" class="reference"><a href="#cite_note-ep40-35"><span class="cite-bracket">[</span>18<span class="cite-bracket">]</span></a></sup>
<br>
<small>(<a href="/wiki/Gapyeong" class="mw-redirect" title="Gapyeong">Gapyeong</a>, <a href="/wiki/Gyeonggi-do" class="mw-redirect" title="Gyeonggi-do">Gyeonggi-do</a>)</small></td>
<td><small><i><b>Catch the Running Man:</b></i></small>
<br>
Mission Team
<br>
<small>(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Joong-ki, Song Ji-hyo)</small>
<br>
Chasing Team
<br>
<small>(Nichkhun, Taecyeon)</small></td>
<td><small><i><b>Running Man Virus:</b></i></small>
<br>
Yu-Maestro Team
<br>
<small>(Yoo Jae-suk, Haha, Jee Seok-jin, Song Joong-ki, Taecyeon)</small>
<br>
Kook-Maestro Team
<br>
<small>(Kim Jong-kook, Gary, Lee Kwang-soo, Song Ji-hyo, Nichkhun)</small></td>
<td>Gary, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Nichkhun, Taecyeon <b>Wins</b><sup id="cite_ref-ball_6-2" class="reference"><a href="#cite_note-ball-6"><span class="cite-bracket">[</span>nb 4<span class="cite-bracket">]</span></a></sup>
<br>