I am looking for a reference of the array that we assign
sup.
array = [1,2,3,4]
array1 = array
array2 = array
now, array1 and array2 hold ref. of the array so my question is how to know that this 2 array holds which object reference? in a value ? in a pointer? memory location?