How can I display the results of DataQuery count ( )

@alex58407 Since your collection is only for followers, you don’t need a filter, all you need is count().

This will give you the number of items in the collection:

wixData.query("Followers")
   .count()
   .then( (num) => {
      let numberOfItems = num;
      $w("#text12").text = "Followers " + num;
  } )