An individual value or item within an array; accessed or updated using an index (subscript).
配列要素を変更するには添字を指定して代入する(例:arr[1] = 10)。
To change an array element, assign to it using an index (e.g., arr[1] = 10).
for文で配列要素を順に処理して合計を求めた。
I processed the array elements in a for loop to compute the sum.