function text(){
const p = document.createElement("p");
p.appendChild(document.createTextNode("Your monthly rent could increase by between "));
p.appendChild(document.createElement("b")).appendChild(document.createTextNode("$"));
p.appendChild(document.createElement("b")).appendChild(document.createTextNode(newrent[0]));
p.appendChild(document.createTextNode(" and "));
p.appendChild(document.createElement("b")).appendChild(document.createTextNode("$"));
p.appendChild(document.createElement("b")).appendChild(document.createTextNode(newrent[1]));
p.appendChild(document.createTextNode(" per month."));
return p;
}