There currently isn't a good way to combine three or more lists at once.
Array.concat() facilitates concatenating two Arrays together, but it's not ideal if you have 3 or more lists to concatenate.
Many languages support Array concatenation using the + operator. I think it would be really useful if FlexSim also supported this.
It would then also be possible to use the += operator as an alias for Array.append().