Hi Erick,
there are several things you have to make sure you do:
Make the array accessible to UX by adding it to your module.exports. Either export the whole object you have there, or map to the inner array directly, it doesn’t make a huge difference. Something like this should do:
And for the last thing on this, if you want to access a literal value inside of an array, you have to reference that with simple empty curly braces, like this:
You might also want to enclose your Each within a StackPanel to keep the items neatly stacked on top of each other, but let’s leave this for you to figure out further.