plusElement
Returns an array containing all elements of the original array and then the given element.
fun <T> Collection<T>.plusElement(element: T): List<T>
Returns a list containing all elements of the original collection and then the given element.