const api = 'https://dog.ceo/api/'
function loadData() {
  fetch(api + '/breeds/list')
    .then(response => response.json())
    .then(data => {
      showData(data.message)
    })
  .catch(err => {
    console.log(err)
  })
}
function showData(data) {
  // do something with data
}