Assuming I have two arrays as follows: let arr1=["john","Bruce","Clent"]; and let arr2=[55,33,22];
How can I create an object using these arrays in JavaScript? The object should look like: {"john":55,"Bruce":33,"Clent":22}; It should use arr1 to define the keys of the object and arr2 for the corresponding values.