function WheelPrice = getWheelPrice ()
% Position of the wheel
global pricePos;
% Array of pricing order
global priceWheel;
% Let's normalize the actual top of the wheel being displayed first
wheelPos = mod(pricePos+2,20)+1;
% Our price is the 3rd one down
WheelPrice = priceWheel(wheelPos);
end