What will the following code print?
```python
array = [2, 7, 1, 5, 3]
target = 9
previousMap = {}
for i, n in enumerate(array):
complement = target - n
if complement in previousMap:
print([previousMap[complement], i])
previousMap[n] = i
```
Press to flip