# Check if all array elements are equals ```ruby arr = [0, 0, 0, 0, 0, 0, 0] puts true if arr.uniq.length == 1 ```