holgerbrandl
listOf("anna", "john", "max") .withIndex() .zip(listOf("berlin", "toronto", "london")) .forEach { ((index, name), city) -> //dostuff }