AJAX is asynchronous (that's what the first A stands for), which means send() returns before the task finishes, at which point the response isn't ready. Set an onreadystatechange handler to handle the response:
xhttp.open("GET","news.xml",false);
xhttp.onreadystatechange=function(evt)...