I would like to list the contents of an array on the x dimension but exclude the cells that are empty (0).
So if I have an array of words like this [Play] [0] [0] [Fire] when I display them this is what happens:
Play
0
0
Fire
What I need is:
Play
Fire
Thank you.