"I'm having trouble getting this constructor to compile."

We start with the keyword public followed by the class name, which is Dairy in this case. Since there are no parameters in this version of the constructor, the first line of this constructor declaration would be: public Dairy() {

Also make sure you declare this constructor inside the class, but not inside any other method or constructor.