The first thing beginners learn in JavaScript is how to write a value and inspect the result. This lesson writes the result into the page so it can be validated immediately.
console.log("Ada");
console.log(100 / 4);
Use a string for firstMessage and arithmetic for divisionResult.