class SatArray { public static void main(String[] args) { int[] arr = new int[3]; arr[0] = 17; assert arr[0] == 17; } }