[['red','yellow'],['xl','xxl']]
above is an array of variant of clothes, how to print 4 set of combination below:
red xl, red xxl, yellow xl and yellow xxl
It seems easy but because it might be more data like another array (or more), I can't do data[0] or data[1] in this case.