ten_things="Apples Oranges Crows Telephone Light Sugar"puts"Wait there are not 10 things in that list. Let's fix that."stuff=ten_things.split(' ')more_stuff=["Day","Night","Song","Frisbee","Corn","Banana","Girl","Boy"]# using math to make sure there's 10 itemswhilestuff.length!=10next_one=more_stuff.popputs"Adding: #{next_one}"stuff.push(next_one)puts"There are #{stuff.length} items now."endputs"There we go: #{stuff}"puts"Let's do some things with stuff."putsstuff[1]putsstuff[-1]putsstuff.pop()putsstuff.join(' ')putsstuff[3..5].join("#")