Quiz Question 1 of 5
Examine the following code:
`numbers = [1, 3, 6, 9, 12, 15] result = []
for num in numbers: if num % 3 == 0 and num % 4 == 0: result.append(num)
print(result)`
What will be the content of the result
list after the loop has executed?
Copy
Choose the correct answer below: