diff --git a/unit_04/w10d02/morning_exercise/README.md b/unit_04/w10d02/morning_exercise/README.md index a482689..0279593 100644 --- a/unit_04/w10d02/morning_exercise/README.md +++ b/unit_04/w10d02/morning_exercise/README.md @@ -76,7 +76,7 @@ var multiplyArray = function (ary) { ### Fizz Buzzer ```javascript var fizzbuzzer = function(x){ - if( x%(3*5) == 0 ) { + if((x%5 === 0) || (x%3 === 0 )) { return 'fizzbuzz' } else if( x%3 == 0 ) { return 'fizz'