void loop() {
// make a string for assembling the data to log:
String dataString = "";
// read three sensors and append to the string:
int chk = DHT.read11(DHT11_PIN);
dataString += String(chk);
dataString += ",";
} //<-- loop() ends here!