1. Store elements in nums in a new object. 2. For the key-value pairs use each element and its index. 3. While you're going through nums, find the difference between the target and the current element. 4. If that difference is already saved as a key, return it's value (aka it's index in nums), and the current index.