for(int i = 0; i < question.length; i++) {
System.out.println("Current index is: " + i);
}
int index = 0;
for(Element song : question) {
System.out.println("Current index is: " + (index++));
}
//you have to do it manually
int index = 0;
while True {
System.out.println("Current index is: " + (index));
index ++
}
*Testing*
int index = 0;
for(Element song : question) {
System.out.println("Current index is: " + (index++));
}