After the first operation, the current array is $[1]$, the suffix sum array is $[1]$, and the bitwise XOR of the suffix sums is $1$.
After the second operation, the current array is $[1,2]$, the suffix sum array is $[3,2]$, and the bitwise XOR of the suffix sums is $1$.
After the third operation, the current array is $[1,3]$, the suffix sum array is $[4,3]$, and the bitwise XOR of the suffix sums is $7$.
After the fourth operation, the current array is $[1,3,6]$, the suffix sum array is $[10,9,6]$, and the bitwise XOR of the suffix sums is $5$.
After the fifth operation, the current array is $[1,100\,000]$, the suffix sum array is $[100\,001,100\,000]$, and the bitwise XOR of the suffix sums is $1$.