
function getQuestion() {
var count = 4;
var r = Math.ceil(Math.random() * count);
if (r == 1) return "Do you understand how the Medicare program pays for your service?";
if (r == 2) return "Are you searching for reliable answers to your coding, documentation and compliance questions?";
if (r == 3) return "Are you tired of endlessly searching for documents and resources that you need to stay current? ";
if (r == 4) return "Are you struggling to keep up with the latest third party regulations?";
}

