import becker.robots.*;
/** Robot Array
 * Demonstrates the use of arrays with Robot data types
 */


class ICE_17_P2
{
    public static void main(String [] args)
    {
        // create an array of 5 doubles here:
        
        //You'll need to count through the array elements
        int counter;
        
        // Create a loop that'll go through all 5 array elements,
        // and set them equal to the numbers 1 through 5
        while( ??? )
        {
        
        
        }
        
        // next, print them out using a for loop

    
    
    }


}

