I'm trying to combine two arrays into a hash.
@sample_array = ["one", "Two", "Three"]
@timesheet_id_array = ["96", "97", "98"]
I want to output the results into a hash called @hash_array. Is there a simple way to combine the two in a code block so that if you call puts at the end it looks like this in the console
{"one" => "96", "Two" => "97", "Three" => "98"}
I think this could be done in one or two lines of code.