This question refers to the following declaration:
String line = "Some more silly stuff on strings!";
//the words are separated by a single space
What string will str refer to after execution of the following?
int x = line.indexOf("m");
String str = line.substring(10, 15) + line.substring(25, 25 + x);
(A) "sillyst"
(B) "sillystr"
(C) "silly st"
(D) "silly str"
(E) "sillystrin"