The following code initializes an array of 5 integers. When…

The following code initializes an array of 5 integers. When the code is disassembled, it shows that the array arr is located at memory address 0x00003F00. After executing the following instructions, what will be the value stored in the variable x?   int arr[6] = {1, 1, 2, -3, 4, -5} int x = *(arr + 4)