In my case I have 4 ArrayList objects as below:
ArrayList<MyProduct> lstStyle;
ArrayList<MyProduct> 2ndStyle;
ArrayList<MyProduct> 3rdStyle;
ArrayList<MyProduct> 4thStyle;
I want to add all the elements in each ArrayList into a new ArrayList called Style.
ArrayList<MyProduct> Style;
Can I do this without looping each ArrayList?