<!doctype html>
<html>
<body>
<form>
<button onclick="myFunction()"> Click Me</button>
<br>
<hr>
Words:<br>
<input type= "text" id= "randomNumber">
</form>
<script>
function myFunction(){
var randomWords = ['Alpha','Beta','Gamma','Epsilon','Kappa','Omega'];
var callNumber = Math.floor(Math.random()*6);
var randomWord = randomWords[callNumber]
document.getElementById('randomNumber').value=randomWord
}
</script>
</body>
</html>
'If you can then please remove the input box and print the words separetely' the result blinks in the box and then dissappears.