题目2单选题
分析以下代码,选择正确的输出结果:List<String> list = new ArrayList<>();list.add("One");list.add("Two");list.add("Three");List<String> subList = list.subList(1, 2);subList.add("Four");System.out.println(list)A. [One, Two, Three]B. [One, Two, Four, Three]C. [One, Two, Four]D. [One, Two, Three, Four]