QuerySelectorall Выберите несколько типов элементов

//Form is an Element already created in the HTML page.
let fields = document.getElementById(`Form`).querySelectorAll("input, textarea, select");

// will show an array of inputs,textarea and select elements by the order in form 
//starting from 0
console.log(inputs);
Real Rook