I am getting started with this project so I apologize for such a basic question.
For example the following is a zsh completion function for command foo:
#compdef _foo foo
compadd first second third fourth
So, if we type foo <tab> in the zsh terminal, it suggests first second third fourth.
How can I do this using completion_utils?