Utilisation de nouveaux pour créer des tableaux

//declare an array variable
int[] highScores;
// create the array
highScores = new int[5];
// declare and create array in 1 step!
String[] names = new String[5];
Outstanding Okapi