class Hideout { private String address; private Robot pres; private Robot vp; private Robot[] crew; public Hideout( String _address, Robot _pres, Robot _vp, Robot[] _crew ) { this.pres = _pres; this.vp = _vp; this.address = _address; this.crew = _crew; } Robot coolestMember( /* Hideout this */ ) { /* inventory: * this.address this.pres this.vp this.crew */ return Robot.coolerOf( this.pres, this.vp ) ; } }