2nd part of Challenge 2 on conditionals.ipynb is an old challenge that we replaced with the current challenge 2. ```original = [-1.5, 0.2, 0.4, 0.0, -1.3, 0.4] result = ____ for value in original: if ____: result.append(0) else: ____ print(result)````