Question 3:

What does the following code print?

---

System.out.println(2 + 3 + "hello" + 4 + 5);

---

A. "5hello45"
B. "5hello9"
C. "23hello45"
D. "14"
