# File solution.rb, line 331
  def get_word_arabic_vocalization
    sb = ""
    sb.force_encoding "UTF-8"
    vocal = get_prefixes_arabic_vocalizations()
    if(vocal!=nil)
      sb += vocal[0].to_s
    end
    
    s = get_stem_arabic_vocalization() 
    if ( s != nil) 
      sb+=s
    end
    vocal = get_suffixes_arabic_vocalizations()    
    if(vocal!=nil)
      sb += vocal[0].to_s
    end
    
    return sb
  end