Printing an arraylist probably won't give you its contents; try to iterate it with a foreach instead:
PHP Code:
for (String sAbility : bulbasaur.getAbility())
{
System.out.println("Bulbasaur ability is " + sAbility);
}
You don't show how you are getting the bulbasaur though, and you don't mention what the problem is, so I have to assume its nothing to do with either a compile time error, or a runtime error and only the output.