I need help with Serial.print

Hi on my project one of the things I need to do is send data to a phone.
I have got everything down but a certain command called serial.print
This is what my feeble attempt after researching an hour was:

int distance=1;
int disturbance = 1;
Serial.println(distance+"inches"+disturbance);

//If you have figured out I have done java script in the past which bought me to this syntax.
And yes I have done Serial.begin
Can anyone suggest any thing?

You'll need to break that println down into parts. The Arduino version doesn't allow you to combine those elements like you may be used to.

Try this:

Serial.print(distance);
Serial.print("inches");
Serial.println(disturbance);