materials = [
"adobe",
"air",
"animal fat",
"asbestos",
"bark",
"beeswax",
"bologna",
"bone",
"bread",
"butter",
"bubblegum",
"canvas",
"cardboard",
"cashmere",
"cement",
"charcoal",
"cheese",
"chewing gum",
"chocolate",
"cigarettes",
"clay",
"cloves",
"construction paper",
"cookie dough",
"crisco",
"daisies",
"depleted uranium",
"dirt",
"duct tape",
"garbage",
"gelatin",
"gold",
"gold-painted macaroni",
"ground beef",
"hashish",
"human bone",
"human hair",
"ice cream",
"incense",
"ivory",
"jade",
"jell-o",
"kleenex",
"lard",
"leather",
"lint",
"lipstick",
"macaroni",
"manure",
"maple sugar",
"marble",
"mashed potatoes",
"matzo",
"meringue",
"mink",
"mothballs",
"mud",
"newspaper",
"nilla wafers",
"nori",
"oatmeal",
"obsidian",
"papier-mâché",
"parmesan",
"peanut butter",
"petroleum jelly",
"pipe cleaners",
"plaster",
"plastic",
"plasticine",
"plexiglas",
"plywood",
"polyurethane foam",
"popsicle sticks",
"pumpkin",
"raisins",
"rat poison",
"raw wool",
"rawhide",
"rhinestones",
"rice",
"rock candy",
"roses",
"rubber",
"salt",
"sand from iraq",
"sandpaper",
"saran wrap",
"sawdust",
"sequins",
"shit",
"snow",
"soap",
"soapstone",
"spices",
"sponge",
"stained glass",
"steel wool",
"sterling silver",
"styrofoam",
"thermoplastic",
"tinfoil",
"tinsel",
"tobacco",
"toilet paper",
"toothpicks",
"tortilla",
"trash",
"twigs",
"tyvek",
"vaseline",
"velcro",
"wafers",
"wax",
"whalebone",
"wood",
"wool",
"yarn"
];

function getMaterial() {
var rand = Math.round(Math.random()*(materials.length-1));
document.write("<br>made of<br>");
document.write(materials[rand]);
}