Getting an out of bounds error when trying to print the names of Movie objects stored in an Array.
Not sure whats happening here.
public String toString()
{
for(i=0;i<=mov.length;i++);
return "Movie: "+mov[i].getName();
}
I did just use the method from a previous example given to us and changed it to fit my program but its not working.