Suppose I have two lists ['a', 'b'] and ['m', 'c']. Is there a quick and dirty way to "multiply" them in such a way that the resulting array would be the list of combinations of each element in both arrays, i.e.,
[ ['a', 'm'], ['a', 'c'], ['b', 'm'], ['b', 'c'] ]