Did you enter the numbers?
If you look at the categories table, "Beverage" has an ID of 1. In the products table, Pepsi and Coke are beverages so they need to be linked to the Beverage category. (PK - FK relationship)
If they were in one table, you would see
Code:
ID, Product, Category (as text)
1, Pepsi, Beverage
2, Coke, Beverage
Move the word Beverage to its own table (tblCategory) and replace it with the PK from the Category table for Beverage.
You get:
Code:
ID, Product, CategoryFK (as Long)
1, Pepsi, 1
2, Coke, 1
Does any of this make more sense?