for(int i= 0; i < movieDatabase.size(); i++)
{
System.out.println(movieDatabase);
}


If that loop is supposed to print the database contents, then you might want to think again. What it...