|
|
|
|
Survey[ 8 ]
you try to access all elements of the array at the same time, but that's not possible. What you actually do is accessing the ninth element of the array (remember the first element is on position 0), while the array is only 8 elements long -> out of bounds crash.
|
|
|
|
|
|
|
|