what will be the output ? double arr[] = {5, 4, 3, 8.8, 6.6}; System.out.print(arr[3]+” “); arr[4]–; System.out.println(arr[4]);
5.6 8.8
8.8 5.6
3 7.8
error