// I have
array1 = ["a", "b"];
array2 = [1, 2];
// I want
[["a", 1], ["a", 2], ["b", 1], ["b", 2]]
// where the order of the tuples doesn't matter to me
// I have
array1 = ["a", "b"];
array2 = [1, 2];
// I want
[["a", 1], ["a", 2], ["b", 1], ["b", 2]]
// where the order of the tuples doesn't matter to me