momm6231 momm6231 11-01-2024 Computers and Technology contestada 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