using System.Collections.Generic;
using System;
var body = new List<string>
{
"Back", "Butt", "Head"
};
foreach(var part in body)
Touch(part);
}
void Touch(string part)
Console.WriteLine("I stroke your {0} <3", part);