I have some problems when I try to fetch the data, I didn't get response. I write the path correctly? I attached the part of the code and pic of my project hierarchy.
let transportation = [];
const init = () => {
  fetch('/data/transportationDataCheck.json')
    .then((response) => {
      return response.json();
    })
    .then((data) => {
      transportation = data;
    }).then(() => {
      renderList(transportation);
    });
};

 
     
     
     
    