using System.Text.Json.Serialization;
using System.Collections.Generic;
public string word {get;set;}
public List<string> tabooWords {get;set;}
public static void Main()
""tabooWords"":[ ""Ball"", ""Sport"", ""Computer"", ""Phone"", ""Fun"" ]
""tabooWords"":[ ""Game"", ""Work"", ""Laptop"", ""PC"", ""Electronic"" ]
""tabooWords"":[ ""Computer"", ""GitHub"", ""Developer"", ""İnsan"", ""Hikaye"" ]
var d = System.Text.Json.JsonSerializer.Deserialize<List<Item>>(input);
var words = d.First(x=>x.word == "Game");
Console.WriteLine(words.tabooWords.ElementAt(new Random().Next(words.tabooWords.Count())));