oneOf needs the following functionality: ``` coffeescript animals = oneOf( "dog" "cat" "llama") .filter((text) -> '<span class="animal">' + text + '</span>') .cycling() # <span class="animal">dog</span> console. log animals() ```
oneOf needs the following functionality: