This program unlocks the "Fridge" in an old PC game.
The "Fridge" is represented as an array of arrays data structure:
boolean[][] init = {
{false, true, false, false},
{false, true, false, false},
{false, true, false, false},
{false, true, false, false}
};
## How to Use
1. Clone the repository.
2. Compile and run the program.
3. Follow the on-screen instructions to unlock the "Fridge".
## Requirements
- Java 8 or higher