“A constructor consists of what in its decleration, heres an example > public Weiner (string Snitzl)”
So in this example you have public(access modifier) then you have Weiner which is the method name but its now your constructor name because you are using it again. Then you have your parameter list which in this case was a String type variable and the name of it is Snitzl.