Use the Twitchtv JSON API issue

the same channelInfo variable is being reassigned in the loop - any async callback in the loop unexpectedly using last value of channelInfo ran after the loop was complete - the fix is to declare channelInfo inside the loop like this

let channelInfo = "https://wind-bow.gomix.me/twitch-api/channels/"
channelInfo += streamers[i]

This post is related