So in a class called Test2 there's a method that is
public static int[] number(int[] numbers) {
System.out.println(numbers);
return numbers;
{
And then in Main
Test2.number(?)
What do I write in the "?" so I can list some numbers and print them?