Consider the given code and answer the given subquestions.
```
phones = {
1: 'iPhone', 2: 'Samsung', 3: 'OnePlus',
4: 'Google Pixel', 5: 'Nokia'
}
for key, value in sorted(phones.items()):
if key == 3:
pass
print(f'{key}: {value}')
```
Question
What will be the output if the `pass` is replaced with `break` in the given code?