``` val custListWithRandomNames: ArrayList<Cust...
# announcements
m
Copy code
val custListWithRandomNames: ArrayList<CustomerInfo>  = custInfoListReq.map {
            it.customerInfo?.name =  it.customerInfo?.name + RandomStringUtils.randomAlphabetic(7)
        }