var ar = new Array(
"Lease Prime Office Space Now",
"Contact our Leasing Specialists for Prime Office Space");

var num = Math.floor(Math.random() * ar.length);
document.write(ar[num]);


