How to display only the final output without showing selection options?

I'm creating a snippet with two dropdown menus:

Car brand selection (Audi, BMW, etc.)

Sentence selection (10 predefined sentences)

{formmenu: name=marke; default=Choose car; Audi; BMW;...}
{formmenu: name=satznr; default=Choose sentence; Sentence 1; Sentence 2;...}

{if: satznr == "Sentence 1"}I drive a {=marke}.{endif}
...

Expected Result:
Only the final sentence should appear (e.g. "I drive an Audi"), without:

The selection options ("Audi", "Sentence 1")

Technical comments

Empty lines

Already Tested (Without Success):

hidden=true / silent=true (unknown parameters)

{notext} blocks

CSS display:none

Two-snippet solution (works but is cumbersome)

Question:
Is there a clean way to achieve this in a single snippet?

Hi, welcome to the community :waving_hand: :smiley:

Does this work for you?

{note}Car brand selection (Audi, BMW, etc.)
Sentence selection (10 predefined sentences)
{formmenu: name=marke; default=Choose car; Audi; BMW; ...}
{formmenu: name=satznr; default=Choose sentence; Sentence 1; Sentence 2; ...}
{endnote}{if: satznr == "Sentence 1"}I drive a {=marke}.{endif}

This uses our {note} command, which makes things show up in the pop-up menu, but not actually be inserted when you insert the snippet.