iif you run the `getArgs` builtin all of the numeric args are filtered. so in ucm, run: ```ucm > run getArgs one 2 three 4 five 6 ``` and you only get the odd numbers: ``` ["one", "three", "five"] ```