<?php

error_reporting(-1);

$answers = array(
	1 => "Ты пидор",
	2 => "Ты членодевка",
	3 => "Ты хуесос",
	4 => "Ты ламповая няша",
	5 => "Ты Лилька",
	);
$question = "Кто я?";
$random = array_rand($answers);
$answer = $answers[$random] ;
echo "{$question}\n";
echo "{$answer}";