Add a constructor public Histogram(int lowerBound, int upperBound) , which will initialize your histogram by setting the range.
a) __init__(lowerBound, upperBound) :
b) Histogram(lowerBound, upperBound) :
c) new Histogram(lowerBound, upperBound)
d) Histogram = (lowerBound, upperBound)