# Problem
Assume that `LIST` start is at memory address `0x0000018` and using ARM Big Endian. After executing the last instruction, what is the value of `r1`?
```armasm
LIST DCB 0x34, 0xF5, 0xE5, 0x01, 0x02, 0x08, 0xFE
ADR r0, LIST
MOV r10, #0x2
LDR r1, [r0]
```
# Process
...
# Answer
```
r1 = memory 0x18 to 0x1B = 0x34F532E5
```