How do you call a static method named calculate that belongs to a class named MathUtils?
MathUtils::calculate();
new MathUtils().calculate();
MathUtils.calculate();
calculate();