diff --git a/hedgehog-corpus.cabal b/hedgehog-corpus.cabal
--- a/hedgehog-corpus.cabal
+++ b/hedgehog-corpus.cabal
@@ -1,10 +1,10 @@
 name:                  hedgehog-corpus
-version:               0.1.0
+version:               0.2.0
 license:               BSD3
 license-file:          LICENSE
 author:                Tim McGilchrist <timmcgil@gmail.com>
 maintainer:            Tim McGilchrist <timmcgil@gmail.com>
-copyright:             (c) 2017 Tim McGilchrist 
+copyright:             (c) 2017-2020 Tim McGilchrist 
 synopsis:              hedgehog-corpus
 category:              Testing
 cabal-version:         >= 1.8
diff --git a/src/Hedgehog/Corpus.hs b/src/Hedgehog/Corpus.hs
--- a/src/Hedgehog/Corpus.hs
+++ b/src/Hedgehog/Corpus.hs
@@ -1,5 +1,3 @@
-{-# LANGUAGE DeriveDataTypeable #-}
-{-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE NoImplicitPrelude #-}
 {-# LANGUAGE OverloadedStrings #-}
 module Hedgehog.Corpus (
@@ -11,6 +9,7 @@
   , cooking
   , fruits
   , glass
+  , metasyntactic
   , muppets
   , nfl
   , nhl
@@ -270,6 +269,7 @@
   , "plum"
   , "strawberry"
   , "tangerine"
+  , "tomato"
   , "watermelon"
   ]
 
@@ -351,6 +351,8 @@
   , "Indianapolis Colts"
   , "Jacksonville Jaguars"
   , "Kansas City Chiefs"
+  , "Los Angeles Chargers"
+  , "Los Angeles Rams"
   , "Miami Dolphins"
   , "Minnesota Vikings"
   , "New England Patriots"
@@ -360,10 +362,8 @@
   , "Oakland Raiders"
   , "Philadelphia Eagles"
   , "Pittsburgh Steelers"
-  , "San Diego Chargers"
   , "San Francisco 49ers"
   , "Seattle Seahawks"
-  , "St. Louis Rams"
   , "Tampa Bay Buccaneers"
   , "Tennessee Titans"
   , "Washington Redskins"
@@ -396,6 +396,25 @@
   , "user story"
   , "velocity"
   , "vertical slice"
+  ]
+
+-- | Collection of <https://en.wikipedia.org/wiki/Metasyntactic_variable metasyntactic variables>.
+metasyntactic :: IsString a => [a]
+metasyntactic = [
+    "foo"
+  , "bar"
+  , "baz"
+  , "qux"
+  , "quux"
+  , "quuz"
+  , "corge"
+  , "grault"
+  , "garply"
+  , "waldo"
+  , "fred"
+  , "plugh"
+  , "xyzzy"
+  , "thud"
   ]
 
 -- | How to say "I can eat glass, and it doesn't hurt me." in a few different
