Outputting query results

By default, wordpress get_results return a numerically array of objects, so to use echo to print your data yo should do something like;

foreach($myrows as $line){
  echo $line->question;
}