// JavaScript Document
texts = new Array(3);

texts[0] = "The beauty of your skin is in your hands!";
texts[1] = "Remove acne from your skin right now!";
texts[2] = "Make your skin look healthier than ever!";

index = Math.floor(Math.random() * texts.length);
document.write(texts[index]);
