0
as said the loop for in pecorre all indices and returns the indices, in this case they are (0,1,2), it is also returning the nodelist’s Dice length that I am pecorrendo, so when using the returned Dice to access another array, the code tries to recover the value of the Dice length(3), caused an error since this Index (3) is not defined`
for(let iBox in boxSlider){
        let boxMain = boxSlider[iBox];
        for(let iCol of colecao[(iBox)]){
        boxMain.innerHTML += `
        <a href="" class="pr">
            <img src="${iCol.imagem}" alt="">
            <span class="tittle">${iCol.nome}</span>
        </a>`;
        }
    }
Note: boxSlider is the nodlist
yes, that’s what I did
– ronaldo junior