DON'T OPEN IF YOU ARE NOT 18YRS
// Random link redirect
function goRandom() {
const links = [
"https://dig.kizoboy.com/smart-ways-students-can-manage-their-money/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/african-student-loan-mistakes-you-must-avoid/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/how-mobile-money-loan-scoring-works/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/top-scholarships-and-grants/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/how-to-apply-for-student-loans/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/smart-ways-students-can-manage-their-money/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/african-student-loan-mistakes-you-must-avoid/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic",
"https://dig.kizoboy.com/how-mobile-money-loan-scoring-works/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic"
];
const randomLink = links[Math.floor(Math.random() * links.length)];
window.location.href = randomLink; // open in same tab
//window.open(randomLink, "_blank"); // use this if you want new tab
}
// Force back button to redirect
history.pushState(null, null, location.href);
window.onpopstate = function () {
location.href = "https://dig.kizoboy.com/top-scholarships-and-grants/?utm_campaign=google_jobs_apply&utm_source=google_jobs_apply&utm_medium=organic";
};