The RESTORE statement lets you read the same data more than once. It has no effect without READ and DATA statements. RESTORE resets the data pointer to the beginning of the first DATA statement in the program unit. You can then read data values again
10 READ B,C,D
20 RESTORE
30 READ E,F,G
40 DATA 6,3,4,7,9,2 50