Suppose you have stored a query string that has already been…
Suppose you have stored a query string that has already been processed to replace any + or URI-encoded characters in the variable queryString. What belongs in the blank in the following JavaScript code if you want to print the names and values of the form fields to the log?let formInfo = queryString.split(/&/g);for (let items of formInfo) { _____ let fieldName = fieldValuePair; let fieldValue = fieldValuePair; console.log(“Name: ” + fieldName + “, value: ” + fieldValue);}