JSFiddle - React, Tailwind, and code Playground

HTML

<select name="" id=""></select>

JavaScript

var pessoas = [{
    ID: 1,
    NOME: 'Joäo'
}, {
    ID: 2,
    NOME: 'Maria'
}, {
    ID: 3,
    NOME: 'Marcos'
}]

var select = document.querySelector('select');
pessoas.forEach(function(obj) {
    var opt = document.createElement('option');
    opt.id = obj.ID;
    opt.innerHTML = obj.NOME;
    select.appendChild(opt);
});