How come this code generates a "cannot cast from source type to destination type" error on the line that prints?
var aircraftObjects = [
"Fuselage",
"Left Alier",
"Left Eleva",
"Left Horiz",
"Left Wing",
"Right Alie",
"Right Elev",
"Right Hori",
"Right Wing",
"Rudder",
"Vertical S"
];
for (var i in aircraftObjects)
{
print(aircraftObjects*);*
*}*
*```*