JSFiddle - React, Tailwind, and code Playground
HTML
<html ng-app="">
<body>
<div class="container" ng-init="numberText=['One', 'Two', 'Three', 'Four', 'Four Plus']">
<select ng-options="label for schedule in numberText"></select>{{numberText}}</div>
<select>
<option ng-repeat="n in numberText">{{n}}</option>
</select>
</body>
</html>