1. Write the code below on the back of the handout
2. Use the following words to describe the code below:
---------declare, instantiate, cast, object--------------
WRITE a sentence or two using those words in relation to the code!
3 . Explain what the code is doing in a complete sentence (or two.)

  ArrayList temp = new ArrayList();
for (int i = 0; i < 11; i++) { temp.add(new Integer((int)Math.random()*100); }