What is the output of the following code snippet?

.include .data
array dword 5,4,3,2,1
.code
main proc
mov esi, offset array
call dumpregs
mov eax, [esi + 1]
call dumpregs
exit
main endp
end main