I have a part numbers array, ['PCI-33', 'GG-34', 'GG-32']
and I have an array of zones, ['UK', 'US', 'CA', 'MX']
etc.
I'm trying to combine both of these arrays so I can get something like this:
['PCI-33-UK', 'GG-34-UK', 'GG-32-UK', 'PCI-33-US', 'GG-34-US', ..., 'GG-32-MX']
What is an efficient way to do that?