To ease the querying or creation of the desired DOM Elements — create two reusable functions:
// DOM utility functions:
const find   = (selector, parent) => (parent || document).querySelector(selector);
const create = (tag, properties) => Object.assign(document.createElement(tag), properties);
that can be used to cache your Elements and use them later in your game logic
// Cache your DOM elements!
const elNumber  = find("#number"); 
const elCheck   = find("#check");
const elAnswers = find("#answers");
which will target and cache your three HTML elements by theri id attribute selector. As said above, instead of using prompt, use a better and less invasive UI (User interface) right into your App:
Enter a number from 1 to 10: <input id="number" type="text">
<button id="check" type="button">CHECK</button>
<ol id="answers"></ol>
Then create two let variables for the guessed state and one for the random number, so that when you start a new game you can change their values:
// Make available for multiple games!
let numRand;
let isGuessed;
then, giving your specific game, you need two more functions, one to start (and restart) the game and one for your game logic:
// Call this function to start a new game!
const start = () => {
  // Clear old answers
  // Reset old guessed state
  // Generate a new random number
};
// Call this function on button CHECK click!
const check = () => {
  // Game logic goes here!
}
// Assign listener to button:
elCheck.addEventListener("click", check);
// Start a new game!
start(); 
Demo time:
// DOM utility functions:
const find   = (selector, parent) => (parent || document).querySelector(selector);
const create = (tag, properties) => Object.assign(document.createElement(tag), properties);
// Task:
// Cache your DOM elements!
const elNumber  = find("#number"); // PS: remember, use const for constants!
const elCheck   = find("#check");
const elAnswers = find("#answers");
// Make available for multiple games!
let numRand;
let isGuessed; // Try to prefix boolean variables with "is*"
// Call this function to start a new game!
const start = () => {
  // Clear old answers:
  elAnswers.innerHTML = "";
  // Reset old guessed state
  isGuessed = false;
  // Generate a new random number 1 to 10:
  numRand = Math.floor(Math.random() * 9) + 1;
};
// Call this function on button CHECK click!
const check = () => {
  // Start a new game if needed
  if (isGuessed) start();
  // Get the user entered value
  // Use parseInt with radix 10 and Math.abs
  // to prevent negative numbers
  const numUser = Math.abs(parseInt(elNumber.value, 10)); 
  // Do nothing if invalid value entered:
  if (!numUser) return;
  // Update isGuessed state
  isGuessed = numRand === numUser;
  // Handle answer:
  const textAnswer = `
    You guessed: ${numUser}.
    The number is ${isGuessed ? "correct!" : numUser > numRand ? "too high." : "too low."}
    ${isGuessed ? "Congratulations!" : "Try again"}
  `;
  // Create a LI element with the answer text
  const elAnswer = create("li", {
    textContent: textAnswer
  });
  // Append your LI element!
  elAnswers.append(elAnswer);
  // Clear the current value from input:
  elNumber.value = "";
};
// Assign listener to button:
elCheck.addEventListener("click", check);
// Start a new game!
start();
Enter a number from 1 to 10: <input id="number" type="text">
<button id="check" type="button">CHECK</button>
<ol id="answers"></ol>
 
 
Additional learning resources: