Modifying a String parameter in a function

Question | Sep 1, 2017 | rparekh 

A method foo modifies its String parameter:

static void foo(String s) {
  s += " Ocean";
}

Method foo is called in another method as:

// call foo
String p = "Pacific";
foo(p);
// p ?

What would be the value of p after the call to foo ?