Arrays in programming use offsets.
for(int i=0;i<10;i++) { array[i] = x; }
Not all do [1].
1. https://therenegadecoder.com/code/which-programming-language...
The point is that offsets and indexes have different meaning.
Arrays in programming use offsets.
The error here is calling it 'i' for index. It should be 'o' for offset.