change
Journey.journeyCost(....)
to
thisJourny.journyCost(...........)
your journyCost is a non-static method of Journy clss, so you have to invoke this method through its object which is thisJourny
using the class name, you can only access static members or can invoke static methods of that class.