Welcome to the Ranch. Please use the "code" tags when posting code; it makes it much easier to read.
You are putting info into the Movie objects and not accessing it again. You are not calling the playIt method anywhere.
Move the Movie class into a file of its own and give the class public access. Please make all the attributes "private" and set up a public constructor in the Movie class. Also public access for the playIt method.
Then you can call it more like this:
Give the Movie identifiers better names than one, two, three.
Alter the playIt method so it prints out something more informative.
I hope that lot is helpful-and I am not trying to be critical.
