ruby &w

# Step 1: Create an array with words using the %w{} syntax
words_array = %w{ruby &w}

# Step 2: Iterate over each element in the array using the each method
words_array.each do |word|
  # Step 3: Print each word to the console
  puts word
end