It’s done when I click on a card and the hidden number is revealed.
It’s done when the number is visible if the card is clicked.
The following image demonstrates the web application’s appearance and functionality:

How can we use the dataset object to access an element’s data attributes?
If you have completed this activity, work through the following challenge to further your knowledge:
getAttribute() and setAttribute(). What other methods can you use to access an element’s attributes?Use Google or another search engine to research this.
<!DOCTYPE html>
<html lang="en-gb">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link rel="stylesheet" href="./assets/css/style.css" />
    <title>Data Attributes</title>
  </head>
  <body>
    <h1>Click on Box to Show Hidden Number</h1>
    <div class="container">
      <div class="box" data-number="1" data-state="hidden"></div>
      <div class="box" data-number="2" data-state="hidden"></div>
      <div class="box" data-number="3" data-state="hidden"></div>
      <div class="box" data-number="4" data-state="hidden"></div>
      <div class="box" data-number="5" data-state="hidden"></div>
      <div class="box" data-number="6" data-state="hidden"></div>
  
    <script src="./assets/js/script.js"></script>
  </body>
</html>
var container = document.querySelector(".container");
container.addEventListener("click", function(event) {
  var element = event.target;
  if (element.matches(".box")) {
    var state = element.getAttribute("data-state");
    // Use an if statement to conditionally render the number on the card
    if (state === "hidden") {
      // If the card is clicked while the state is "hidden", we set .textContent to the number 
      element.textContent = element.dataset.number;
      // Using the dataset property, we change the state to visible because the user can now see the number
      element.dataset.state = "visible";
   
    } else {
      // 'Hide' the number by setting .textContent to an empty string
      element.textContent= "";
      // Use .setAttribute() method
      element.setAttribute("data-state", "hidden")
     
    }  
  }
  
});