I need to create an array called BigArray. BigArray needs to contain words from below arrays.
There are three arrays called “users”. Each such array has certain words in it like:
Users1: Cat, Dog, Bat
Users2: Apple, Mango, Banana, Pear
Users3: Big, Small
I want to arrange above words in BigArray in following way:
Cat, Apple, Big, Dog, Mango, Small, Bat, Banana, Pear
How can I do that?
This solution will work even if your Userx arrays do not all have the same size: