'Using Arrays 'The following Script uses Arrays 'Scripting by Fusion 13 'webmaster@Fusion13.com Please send attachments and personal programs and or scripts 'computing.Fusion13.com '7-22-01 'Copyright Fusion 13 Option Explicit dim Array(2) 'undefinded array dim xbox 'line 8 Array(0) = inputbox("Please Type in a Number")', "First Number in the Array") Array(1) = inputbox("Please Type in a Number")', "Second Number in the Array") xbox = msgbox("The numbers that you typed are: " + Array(0) + " and " + Array(1) + " .", vbokonly, "Using an Array Variable")