import becker.io.*; // don't actually need this for the in-class exercise

class Histogram extends Object
{
	public void drawGraph(?????????????????  ) //TODO: what do you want to put in here?
	{
		// TODO: Draw out the graph
	}
}

public class HistogramWithoutRobots extends Object
{
    public static void main(String[] args)
    {
			// On the one hand, 'mary' is an odd name for an abstract
			// block of software.  On the other hand, it nicely parallels
			// the previous, robot-based code that you worked on.
			Histogram mary = new Histogram();
			
			int [] integerArray = new int [5];
			integerArray[0] = 1;
			integerArray[1] = 6;
			integerArray[2] = 2;
			integerArray[3] = 0;
			integerArray[4] = 5;
			mary.drawGraph(integerArray);
	}
}