Eaching unnamed Items

I am currently trying to Each a variable with “unnamed” content.

My variable looks like:

var text = {"text1", "text2", "text3"};

I want to each through the text-variable and display every text.
I can’t access the content because the text is not “named” like in the example.

<Each Items="{text}">
 <Text Value="{???}" />
</Each>

What value should i insert here?

It’s just {}, as in:

<Each Items="{text}">
    <Text Value="{}" />
</Each>