I\'m writing a method that receives any number of arguments and returns them modified. I have tried with varargs but it doesn\'t work, here you can see a simplified version of t
"prefix_" + elements[i] creates a new object, which is put into the array elements. You have to return elements to get the modified variables.
"prefix_" + elements[i]
elements