menu prompts

All of the examples I’ve seen with Ansible prompts have been simple single line prompts. For example,

  vars_prompt:
    name: "what is your name?"
    quest: "what is your quest?"
    favcolor: "what is your favorite color?"
Is there any way to make a prompt include newlines or a menu like this:
what's your favorite color?
1) red
2) green
3) blue


Try embedding new line characters in your prompt string:

  vars_prompt:
    name: "what is your name?"
    quest: "what is your quest?"
    favcolor: "what is your favorite color?\n 1) red\n 2) green\n 3) blue"

It works! I thought I tried this before, but it worked this time. Thanks.