Question: how can I output pre superscripts in a loop

In a loop I want an output similar to this 

1x, 2x, 3x, 4x, 5x

So here's some code to get a sense of what I was trying to do

for i from 1 to 5 do
  `#mscripts(mi("x"),none(),none(),none(),none(),none(),mn(i))`;
end do;

Any ideas?

Please Wait...