What is the result of this Java code execution?
int x = 10; int y = ++x;
x = 10, y = 10
x = 11, y = 10
x = 10, y = 11
x = 11, y = 11