Here are five examples of SQL INSERT statements that could be used to insert data into a table based on the provided "Person" class:
```INSERT INTO person (first_name, last_name, age) VALUES ('John', 'Doe', 35);```
```INSERT INTO person (first_name, last_name, age) VALUES ('Jane', 'Smith', 29);```
```INSERT INTO person (first_name, last_name, age) VALUES ('Robert', 'Johnson', 42);```
```INSERT INTO person (first_name, last_name, age) VALUES ('Samantha', 'Williams', 25);```
```INSERT INTO person (first_name, last_name, age) VALUES ('Michael', 'Brown', 31);```
Keep in mind that these INSERT statements assume that you have a table called "person" with columns for "first_name", "last_name", and "age". The table and column names may be different in your database, so you may need to modify the INSERT statements accordingly.