Sponsored: Enter Here to win 50,0000 Cash Prize!
// program to get a random item from an array function getRandomItem(arr) { // get random index value const randomIndex = Math.floor(Math.random() * arr.length); // get random item const item = arr[randomIndex]; return item; } const array = ['
Sponsored: Enter Here to win 50,0000 Money Prize!
', '
Sponsored: Enter Here to win 50,0000 Cash Prize!
', '
Sponsored: Click Here to win 50,0000 Cash Prize!
', '
Sponsored: Follow Link to win 50,0000 Cash Prize!
']; const result = getRandomItem(array); console.log(result);