Array Order

I have an array of this kind

[
  'Option 1', 
  'Option 2', 
  'Option 3',
]


I need a form element in which the user may re-order this array to achieve something like

[
  'Option 2', 
  'Option 1', 
  'Option 3',
]

but can't delete / add / update any option. I am trying with Repeater, but the results are not very good.

Thanks in advance for any suggestions / pointers.
Was this page helpful?