JSFiddle - React, Tailwind, and code Playground

HTML

<select id="test"></select>

CSS

body {
    padding: 20px;
}

select {
    font-size: 16px;
}

JavaScript

var select, i, option;

select = document.getElementById( 'test' );

for ( i = 12; i <= 100; i += 1 ) {
    option = document.createElement( 'option' );
    option.value = option.text = i;
    select.add( option );
}