0👍
✅
colItems is an Array, like a = [1,2,3,4]
if you want to access specific element inside array you need to provide index of that element like a[0] // result-> 1
. so colItemImgs
is not accessible by your method. find the index of the element you want to work with and use it by the method mentioned as above.
Source:stackexchange.com