initial serial monitor test . puzzled by response

Could this be a workaround?

void setup()
{
  Serial.begin(9600);
  Serial.print("");
  Serial.print("Value =  ");
  Serial.println(1234);
}

void loop()
{
}

...or a small delay after Serial.begin(9600) or test with another baudrate.