var list = project.Lists["secondList"];
Random rnd = new Random();
if (list.Count <= 0)
{
project.SendWarningToLog("", "Список secondList пуст", true);
return null;
}
if (list.Count < 20)
{
for (int i = 0; i < list.Count; i++)
{
int index = Global.Classes.rnd.Next(0...