// JavaScript Document
texts = new Array(3);

texts[0] = "Do not let acne be a problem for you anymore!";
texts[1] = "It is time acne become just a bad memory in your life!";
texts[2] = "Acne is your new old problem starting right now!";

index = Math.floor(Math.random() * texts.length);
document.write(texts[index]);
