Revise the following code so the outer loop counter is not e…

Revise the following code so the outer loop counter is not erased when the inner loop starts:  mov eax, 0  mov ecx, 10        ; outer loop counterL1:   mov eax, 3  mov ecx,5            ;inner loop counterL2:  add eax,5  loop L2            ;repeat inner loop  loop L1            ;repeat outer loop