var quotes = new Array;

quotes.push("Thank you!");

quotes.push("&quot;Here is another quote.&quot;<br><br>John Doe<br>ACME Inc.");

quotes.push("Keep adding quotes like this.");
quotes.push("Yes, just like that.");
quotes.push("Malika is the BOMB!");
quotes.push("A mind blowing experience...");

document.write(quotes[(Math.floor(Math.random() * quotes.length))]);

