Get Mystery Box with random crypto!

Code snippet List one = new ArrayList(); one.add('abc'); List | Top Java Quiz Questions ☕️

Code snippet
List one = new ArrayList();
one.add("abc");
List two = new ArrayList<>();
two.add("abc");
if (one == two)
System.out.println("A");
else if (one.equals(two))
System.out.println("B");
else
System.out.println("C");