Critical Bug: is_profane() function has inverted logic - returns False when profanity is detected example: print(is_profane("hello yobbo")) # Returns False (should be True) print(is_profane("hello world")) # Returns True (should be False)