Could someone help me figure out what's wrong with my code? I am trying to read an integer, store its value and print it to the screen/
.text
main:
li $v0, 5
la $a0, testInteger
syscall
li $v0, 4
la $a0, resultString
syscall
li $v0, 1
la $a0, testInteger
syscall
.data
testInteger: .word 5
resultString: .ascii "The integer is :"