exec(session => {
val c_list1ofvalues = session(“list1ofvalues”).as[List[String]]
val list2ofvalues = session(“list1ofvalues”).as[List[String]]
val c_list1ofvalues_count = session(“list1ofvalues_count”).as[Int]
val randomInt = ThreadLocalRandom.current.nextInt(c_list1ofvalues_count)
val str1 = c_list1ofvalues(randomInt)
val str2 = list2ofvalues(randomInt)
session.set(“str1”,str1).set(“str2”,str2)
})