Collections Java Tutorial

new type[] {comma-delimited-list}

public class MainClass {
  public static void main (String args[]) {
    int array1[] = {1, 2, 3, 4, 5};
    for(int i: array1){
      System.out.println(i);
      
    }
  }
}
1
2
3
4
5