toString() – list of array elements

This Java code defines a class named ArrayMethods that contains a main method.

The main method creates an array myArray and initializes it with the values {1, 2, 3, 4, 5}.

Next, the code uses the Arrays.toString method to convert the array myArray into a string representation. The Arrays.toString method returns a string representation of the contents of the array. The string representation is in the format [element1, element2, ..., elementN].

Finally, the code outputs the string representation of the array by calling System.out.println with the result of Arrays.toString(myArray).

import java.util.Arrays;

public class ArrayMethods {
    public static void main(String[] args) {
        int[] myArray = { 1, 2, 3, 4, 5 };

        System.out.println(Arrays.toString(myArray));
    }
}
Output
[1, 2, 3, 4, 5]