svoid webScrape1000MostCommonEnglishWords() {
  S html = webScrape("https://1000mostcommonwords.com/1000-most-common-english-words/");
  TableFinder tf = new(html);
  print("Have table with " + nRows(tf.rows());
  LS l = nempties(getColumn(2, dropFirst(tf.rows()));
  if (l(l) == 1000)
    replaceMechList("1000 most common English words", l);
}