4. Reading Website Data with Fetch dot syntax (ES6)

      fetch('data/simpleMenu.json')
      .then(res => res.json())
      .then(posts => console.log(posts))
      .catch(error => console.error('Error:', error));