can i ask why does the following output FALSE?
import java.util.Arrays;
public class Test2 {
public static void main(String[] args) {
new Test2();
}
private final int[] VOWEL_POS = {0,4,8,14,20};
Test2(){
if(Arrays.asList(VOWEL_POS).contains(0)){
System.out.print("TRUE");
}else{
System.out.print("FALSE");
}
}
}
Thanks!