function myFunction(time)
{
alert('time starts now');
//code to make the program wait before continuing
alert('time is up')
}
const testing = () => {
const inputValue = document.getElementById("inputField").value;
alert(inputValue);
}
let firstName = prompt("What is your first name");
let lastName = prompt("What is your last name");
let fullName = firstName + " " + lastName;
alert(fullName);
"Not Found"