//class Item
function Item(problem,solution){
 this.problem = problem;
 this.solution = solution;
}
//End class Item
