Outputing data from array

Hi

I’m trying to output a list of values stored in an array, but I can’t seem to get it working. This is the code that I tried.

ary = ['Entertainment','Social','Printed Media','School','Work','Hobbies']
for i in 0..ary.length()-1 do
  i
end

I only want to generate rows for the items listed in the array.

How can I do this?

if you are looking for Row 1 = Entertainment , Row 2 = Social etc the easiest way would be a Custom List and Seqential Distribution ?

Or if you are looking to randomly pick from a list
something like the below will work:

pick = ['Entertainment','Social','Printed Media','School','Work','Hobbies'];
generate("Custom List", values: pick)