public void GetId_WordsInstantiateWithAnIdAndGetterReturns_Int()
        {
            WordCounter.ClearAll();
            //Arrange
            string      description     = "Walk";
            string      test            = " this";
            WordCounter newWordCounter  = new WordCounter(description, test);
            WordCounter newWordCounter2 = new WordCounter(description, test);

            //Act
            int result = newWordCounter2.GetId();

            //Assert why is this 3??????????????????????????????
            Assert.AreEqual(2, result);
        }