<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Terri,<div class="">It is the craziest thing and I believe that you have found a bug.</div><div class=""><br class=""></div><div class="">It turns out that if I use the array “allCars”, the program will recognize and execute the <b class="">drive</b> procedure.</div><div class=""><br class=""></div><div class="">You have set up these supplemental arrays of Automobiles to keep track of the different rows of cars. You initialize these arrays with the black car, and then in setup successfully populate these arrays with random sets of cars, replacing the black car with different automobiles from the scene.</div><div class=""><br class=""></div><div class="">The setup works as you would expect If you print these row arrays, you see the different cars.</div><div class=""><br class=""></div><div class="">The bug seems to occur in that for some reason, even though these are arrays of automobiles, in the linking of the random car to the array, Alice loses track of the fact that there are methods associated with that object (in this case, drive), and simply ignores the call to that method. There may be a type problem here in that Alice uses SThing somehow in the reassignment of an object to an array of objects, but that is only speculation on my part, and the dev team may have more to say about this.</div><div class=""><br class=""></div><div class="">Another workaround, you have already found one, would be that your row arrays could be arrays of WholeNumbers, storing random indices from allCars rather than the car object. Then you could use the allCars array with the index values from these row arrays to call <b class="">drive</b>.</div><div class=""><br class=""></div><div class="">I have attached your original world (I have added a couple of statements to help me with debugging), plus a test world I built to help me check my hypothesis, for the dev team to look at. I will be interested to see if they have any other thoughts.</div><div class=""><br class=""></div><div class="">Thank you, and all the best,</div><div class="">Don Slater</div><div class=""><br class=""></div><div class="">Alice Project</div><div class=""><br class=""></div><div class=""></div></body></html>