(async function(){
const proxies = [/* тут твои прокси данные*/]
const toFetch = []
for(const proxy of proxies){
toFetch.push(fetch(proxy))
}
const allResponses = await Promise.all(toFetch)
console.log(allResponses)
})()