Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anya Melnyk
3,571 PointsI can't really understand what exactly is required in this challenge?
Concatenate in the var request?
var http = require("http");
var request = http.get("http://teamtreehouse.com/chalkers.json", function(response){
var responseBody = "data"+ " "+ "error";
response.on("data", function(dataChunk) {
console.log(responseBody);
});
response.on("", function(){
console.log(responseBody);
});
});
request.on("error", function(error){
console.error(error.message);
});
1 Answer

Kevin VanderWulp
5,180 Points var http = require("http");
var request = http.get("http://teamtreehouse.com/chalkers.json", function(response){
var responseBody = "";
response.on("data", function(dataChunk) {
responseBody += dataChunk;
});
response.on("", function(){
console.log(responseBody);
});
});
request.on("error", function(error){
console.error(error.message);
});
I believe it's looking for something like this. It says to concatenate the data stream to the responseBody variable, so when a response with data is sent, it will concatenate the dataChunk into the responseBody variable.
Anya Melnyk
3,571 PointsAnya Melnyk
3,571 Pointsgreat! thanks, Kevin