OOPL java

package InventorySystem;

public class test {
	
	void start () {
		String chair = "chair";
		String table = "table";
		
		String[] collection = new String[2];
		collection[0] = chair;
		collection[1] = table;
	}

	public static void main(String[] args) {
		new test().start();

	}

}