The collection.concat( ) method returns a new collection containing the elements of the original collection with all elements of the value parameter added to the end.
Note: This method does not modify the original collection.
If value is a collection, all its elements are added as new elements at the end of the original collection. If value is not a collection, it is added itself as a new element.