SortArray must have same datastructures to sort.Same DataStructure โ #[57] pry(main)> [4,2,5,1,0].sort=> [0, 1, 2, 4, 5]CopyDifferent DataStructure โ#[58] pry(main)> [4,2,5,"1",0].sortArgumentError: comparison of Integer with String failedfrom (pry):69:in `sort'CopyComparator in Ruby:#TODO