Concatenating Serial.print output

I don't know how to concatenate both of the Serial.print outputs into a string.

Just print them one after the other

Serial.print(1);
Serial.print(2);

Need a separator ?

  Serial.print(1);
  Serial.print(",");
  Serial.print(2);