What is the output of the following code? import java.util.*; public class Test { public static void main(String[] args) { List list = Arrays.asList("A", "B", "C"); list.add("D"); } }