Given the following list:
a = ['aux iyr','bac oxr','lmn xpn']
c = []
for i in a:
x = i.split(" ")
b= x[1][::-1] --- Got stuck after this line
Can anyone help me how to join it to the actual list and bring the expected output
output = ['aux ryi','bac rxo','lmn npx']