public static Recipe GetRandomRecipe() { Random rand = new Random(); var recipe = Recipes.ElementAt(rand.Next(0, Recipes.Count)).Value; return(recipe); }