Arrays

Arrays are always objects, whether they’re declared to hold primitives…int[] nums;nums = new int[3];nums[0] = 4;nums[1]…