Final answer:
Array elements in Java are accessed using an array index.
Step-by-step explanation:
In Java, array elements are accessed using an array index.
For example, let's say we have an array named numbers[] and we want to access the first element. We would use the syntax numbers[0] to access the element at index 0.
Arrays are zero-indexed, which means that the first element is always at index 0, the second element at index 1, and so on.