function SolutionBullets() {
var bullets = new Array()
bullets[0] = "<ul><li>officialCOMMUNITY gives music fans fair access to the Best Seats concert tickets through its Invitation Ticketing system</li><li>officialCOMMUNITY understands that someone signs up for an artist's newsletter because they are interested in that artist, not in a genre of music or items</li></ul>";
bullets[1] = "<ul><li>officialCOMMUNITY gives music fans fair access to the Best Seats concert tickets through its Invitation Ticketing system</li><li>officialCOMMUNITY understands that someone signs up for an artist's newsletter because they are interested in that artist, not in a genre of music or items</li></ul>";
bullets[2] = "<ul><li>officialCOMMUNITY gives music fans fair access to the Best Seats concert tickets through its Invitation Ticketing system</li><li>officialCOMMUNITY understands that someone signs up for an artist's newsletter because they are interested in that artist, not in a genre of music or items</li></ul>";


var Q1 = bullets.length;
var whichSols=Math.round(Math.random()*(Q1-1));
var obj = document.getElementById("solBullets")
obj.innerHTML=bullets[whichSols]
}

