what am I'm going to say?

by andrewjohn

HTML

<div id="body"><p id="mass">

</p></div>

CSS

#body {
	  position: absolute;
		left: 25%;
		top: 35%;
		width: 45%;
		hieght: 55%;
		background-color: #cacaca;
		text-align:center;
		padding-top: 30px; 
}
body {
	  background-color: rgb(0,255,255);
}

JavaScript

var myMess = prompt("guess what I'm going to say");
document.getElementById("mass")
  .innerHTML=myMess;