Java forEach method call should be replaced with Kotlin's forEach code example
Example 1: how to make array of objects in java and use it
class enemies {
int marks;
}
enemies[] enemiesArray = new enemies[7];
enemiesArray[5] = new enemies(95);
Example 2: how to use for loop for array in java
import java.io.*;
class GFG {
public static void main(String args[]) throws IOException
{
int ar[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
int i, x;
for (i = 0; i < ar.length; i++) {
x = ar[i];
System.out.print(x + " ");
}
}
}