public static void Main()
"forehead wrinkles", "laugh lines", "crow's feet", "beer belly", "fat rolls",
"Roman nose", "joined eyebrow", "alopecia", "vitiligo", "below-knee amputee",
"above-knee amputee", "below-elbow amputee", "above-elbow amputee", "paraplegia", "partial-limb paralysis",
"colostomy", "diabetes patch", "partial facial paralysis", "hearing aid", "wheelchair",
"crutches", "prosthesis", "oxygen tank", "back brace", "dwarfism",
"acne", "significant scarring", "bald patches", "apron belly", "marionette lines",
"polydactyl", "symbrachydactyly", "varicose veins", "kyphosis", "lordosis",
"uneven breasts", "saggy breasts", "recessed chin", "thick arms", "masectomy scars",
"frontal bossing", "keratosis", "solar keratosis"
var random = new Random();
var results = items.OrderBy(item => random.Next()).Take(count);
Console.WriteLine("First three results from the randomized list:");
Console.WriteLine(string.Join(Environment.NewLine, results));