Which of these statements give g a value of "Hello Robin!"?

g = "Hello Robin!";g = g.replace("World", "Robin");g = g.slice(0, 5);
g += "Robin!";
g += "Robin";

Fantastic! We can use replace() or slice() with g or, simpler, assign "Hello Robin" to g.

Yikes! We can use replace() or slice() with g or, simpler, assign "Hello Robin" to g.