// JavaScript Document

function Quotes(){
var quote = [];
quote[0] = "Very convenient for group projects.";
quote[1] = "It is nice to have a large screen when working with groups so everyone can see.";
quote[2] = "Lots of different study areas to choose from.";
quote[3] = "It is a good place to work together.";
quote[4] = "Spacious, private, comfortable.";
quote[5] = "Lots of table space.";
quote[6] = "I like the atmosphere.";
 
var maxLength = quote.length;
var position = Math.floor(Math.random() * maxLength);
quotetext = quote[position];
return quotetext;
}