diff --git a/unit_04/w10d02/morning_exercise/README.md b/unit_04/w10d02/morning_exercise/README.md index 201adef..a482689 100644 --- a/unit_04/w10d02/morning_exercise/README.md +++ b/unit_04/w10d02/morning_exercise/README.md @@ -83,7 +83,7 @@ var fizzbuzzer = function(x){ } else if ( x%5 == 0 ) { return 'buzz' } else { - return 'archer' + return 'Panthalassa' } } ```