import java.util.ArrayList; class Business { } class Hotel extends Business { } class Inn extends Hotel { } public class Travel { ArrayList<Hotel> go() { // insert code here } } A. return new ArrayList<Inn>(); B. return new ArrayList<Hotel>(); C. return new ArrayList<Object>(); D. return new ArrayList<Business>();