loadData() {
fetch('../../data/name.json')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data);
})
.catch(e => console.log(e));
}