public async Task StartWordList(string nameOfWordList) { // Find word list by name and send the first word from a random order. await Clients.All.SendAsync("ReceiveWord", _currentWordList.First(w => !w.IsCorrectlyAnswered)); }