Given that integer array x has elements 5, 10, 15, 20, What is the output of the following code?

int i;
for (i = 0; i < 4; i++)
x[i] = x[i] + 1;


What are the elements of array x after executing the code?