Answer:
-5
0
5
Explanation:
x is being assigned a value of -5:
x -> -5
x will be assigned x's previous value + 5:
x -> x + 5
x will keep increasing by 5 until x = 6, hence the REPEAT UNTIL (x = 6)
so:
-5 is the starting value and:
x -> -5 + 5
x = 0
x -> 0 + 5
x = 5
x -> 5 + 5
x = 10. thats more than 6, so we stop and x = 5
-5
0
5