int index = 1;  <br /> String test = new String;  <br /> String foo = test[index]; <br /> What is the result?()
A、 Foo has the value “”
B、 Foo has the value null
C、 An exception is thrown
D、 The code will not compile