For this question, refer back to the code in LinkedChain.java What if the line statement

chain.add(16);

was added after the line

chain.add(57);

what would the order of the integers be starting at the front of the chain?

16, 57, -2, 10
  • 16, 10, -2, 57
  • 10, -2, 57, 16
  • 57, -2, 10, 16

There are no hints for this question