diff --git a/unit_04/w10d02/morning_exercise/README.md b/unit_04/w10d02/morning_exercise/README.md index 0279593..df7cd64 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%5 === 0) || (x%3 === 0 )) { + if((x%5 === 0) & (x%3 === 0 )) { return 'fizzbuzz' } else if( x%3 == 0 ) { return 'fizz'