Creating HTML table from Json URL

I need support for creating a table generated from this Json url: ” https://search.lib.ou.ac.lk/cgi-bin/koha/svc/report?id=629try this .

The data generated this format: [[167208,”8170002583″,”Information technology in libraries”],[167215,”9556070346″,”Impediments to regional economic cooperation in South Asia”],[167190,”9789553038630″,”Jene Booster”],

The Structure: | biblionumber | isbn | title

I try this code but it does not work. Please help.

  const requestJSON = async url => {
  const response = await (await fetch(url)).json();
  biblionumber.innerHTML = response.squadName;
  isbn.innerHTML = response.homeTown;
  title.innerHTML = response.formed;
  } requestJSON(requestUrl);
type here

I need to display date into html table