momm6231 momm6231 Today at 6:42 PM Computers and Technology Answered 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