You are trying to access an array element at the index which is greater than the array's size. Change i <= 5 to i < 5 it should work.

Spring 3