I am terribly sorry for the confusion. I know how hard it is to get started in a language and this type of confusion does not help.
This is what I suggest.
Do not go to chapter 10 yet.
Ignore the small amount of text under the heading Structures and read this *new* definition instead. After that continue on with the Try it out section. Later when you get to chapter 10, review the differences that you have been presented with.
Structures
A structure is a grouping of variables.
it would combine variables in such as way that it has a "structure".
So instead of creating two unrelated variables like this
Public Firstname as String
Public LastName as String
we put it in a structure like this.
Public Structure Customer
Public Firstname as String
Public LastName as String
End Structure
Now you can access the two variables under the structure like so.
<NameOfStructure>.<NameOfVariable>
example: Customer.FirstName
The benefit is cleaner code and structured variables.
This is all you need to know about structures for where you are in the book at this point.
The Try it out section will help you understand how to use it, so I suggest you continue on with this chapter and read chapter 10 when you get there.
I hope this helps.
Jonathan Crossland
http://www.jonathancrossland.com