I would like to collect the content from 3 different URLs, and print it to stdout. The content must be printed in the sequence that the URLs are supplied i.e. process.argv[2] = URL1, process.argv[3] = URL2 etc.. I thought that if I used a series of nested callbacks this would work but instead what is happening is that some of the content of the 2nd URL starts to get printed before the 1st URL (it varies each time depending on how long it takes to load the page, but it is never synchronous) - How to code this so that the 2nd URL is only printed after the 1st URL is completely finished etc... Here is my code:I would like to collect the content from 3 diff