public class Wardrobe {
  private String[] items;

  public Wardrobe(String[] items) { this.items = items; }

  public String checkInventory(int slot) {
    try {
      return "Slot contains: " + items[slot];
    } catch (ArrayIndexOutOfBoundsException e) { return "Slot is empty!"; }
  }
}
