Preview:
if (have_rows('your-repeater')) {
  ?>
    <select>
      <?php 
        while (have_rows('your-repeater')) {
          the_row();
          ?><option value="<?php the_sub_field('your-sub-field'); ?>"><?php the_sub_field('your-sub-field'); ?></option><?php 
        }
      ?>
    </select>
  <?php 
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter