Javascript Level 11 lesson 5
//Even though the url is correct, It's asking to type the correct url.
function makeHTTPCall(url)
{
console.log("Making HTTP call: ", url);
setTimeout(processResponse, 3000);
}
function processResponse()
{
console.log("response received...");
console.log("Processing response...");
}
makeHTTPCall(//url here);
//What's the mistake here?