Printing multiple variables in columns in serial monitor

I've got an Air Quality sensor and a Light sensor running off the arduino. However, when I open the Serial Monitor the results just alternate between the two in one single column.

Jeremy574:
I've got an Air Quality sensor and a Light sensor running off the arduino. However, when I open the Serial Monitor the results just alternate between the two in one single column.

I'm going to guess you used println for both: use print for the first one, and add another print with some spaces or a tab, then println the second one.

I don't think anyone can really help without you showing your code. And when you do that, explain what it is you want.