```ruby class KeywordNormalizer def call(keywords) Collection.new(keywords) .strip_outer_punctuation .fix_spanish( one: two, three: four, five: six ) .clean_inner_punctuation .remove_stop_words .to_a end end ``` 😕