For what you want the ideal is to create an array of names and as you go through it makes ajax requests creating and configuring the objects XMLHttpRequest
:
const url = "http://www.a_sua_pagina_aqui.php";
const nomes = ["Fernando","Lucas"];
nomes.forEach((nome) => { //percorrer todos os nomes
const xhttp = new XMLHttpRequest(); //criar o objeto para o pedido
xhttp.onreadystatechange = function() {
//apenas dentro do if tem a resposta à requisição
if (this.readyState == 4 && this.status == 200) {
console.log(xhttp.responseText); //resposta vem no responseText
}
};
xhttp.open("POST", url , true); //requisição do tipo POST com true para ser assíncrono
xhttp.send("nome=" + nome); //parâmetros enviados aqui, neste caso apenas o nome
});
It's important to remember that the order you get the answers will not necessarily be the order you sent them!