# Eaching unnamed Items

**URL:** https://forums.fusetools.com/t/eaching-unnamed-items/1982
**Category:** How-to Discussions
**Created:** [February 7, 2018, 6:16pm UTC](https://forums.fusetools.com/t/eaching-unnamed-items/1982 "2018-02-07T18:16:40Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Jxns](https://avatars.discourse-cdn.com/v4/letter/j/d6d6ee/32.png) [@Jxns](https://forums.fusetools.com/u/Jxns)
#### Post date: [February 7, 2018, 6:16pm UTC](https://forums.fusetools.com/t/eaching-unnamed-items/1982/1 "2018-02-07T18:16:40Z")

</div>

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

My variable looks like:

```auto
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.

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

```

What value should i insert here?

---

<div class="post-metadata">

### Author: ![Uldis](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/uldis/32/657_2.png) [@Uldis](https://forums.fusetools.com/u/Uldis)
#### Post date: [February 8, 2018, 8:22am UTC](https://forums.fusetools.com/t/eaching-unnamed-items/1982/2 "2018-02-08T08:22:03Z")

</div>

It’s just `{}`, as in:

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

```
