What is output by the following code?

for x in range (25, 5, -2):
print(x, end=" ")

awnsers:
25 23 21 19 17 15 13 11 9 7

23 21 19 17 15 13 11 9 7 5

7 9 11 13 15 17 19 21 23 25

Error