// JavaScript Document
function randomNumber(maxValue, minValue) {
  //If minValue/maxValue is missing make it/them 0/1
  if (minValue == null) minValue = 0;
  if (maxValue == null) maxValue = 1;

  //Return the number
  return (Math.round(maxValue * Math.random()) + minValue); 
}
var outputs = new Array(
  "The basic premise on which homoeopathy rests can be traced back to Hypocrites (468 -377 BC), but it was the work of Samuel Hahnemann (1755-1843) that popularised it as a useable practice ",
  "Homoeopathy gained popularity worldwide between 1820 and 1900",
  "At its peak, in 1900, the US saw 22 homoeopathic colleges flourishing in the US with a monument dedicated to the founder, Samuel Hahnemann, at Scott Circle, Washington, DC",
  "Queen Elizabeth II and the Royal Family still continue the family tradition of having a homoeopath on the Buckingham Palace medical staff",
"While homoeopathy has gained prominence as an alternative treatment in France, Germany, India and various South American countries, it is denounced as ‘quackery’ in other parts of America",
"Homoeopathy is the second most widely used system of medicine globally",
"All homoeopathic medicines are ‘proved’ before being used for treatment",
"Homoeopathic drugs come from plant, animal and mineral sources, and are given in very tiny dosages to avoid side effects",
"Phosphorous was first discovered in and was made urine in 1669. A century later, it was discovered as one of the ingredients of bones. For homoeopathic use, phosphorous is made from bone ash"
   
);