I would need to combine 2 or more arrays in the following way:
array1 = A, B, C
array2 = x1, x2
expected result would be:
A x1
A x2
B x1
B x2
C x1
C x2
and if I have another array, distribute the values to each item from the main array (array1)
I'm confused how to solve this. Thanks in advance