Suppose that you are given the following program.
After the instruction "mov ebp, esp", which of the following is referenced by each of the following?

.data
x DWORD 153461
y WORD 37
z WORD 90


.code
main PROC
push x
push y
push z
call someProcedure
...
exit
main ENDP

someProcedure PROC
push ebp
mov ebp, esp
...

pop ebp
ret 8
someProcedure ENDP
END MAIN
[ebp + 4]

[ebp + 8]

[ebp + 10]

[ebp + 12]

[ebp]

[ebp + 6]